Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Removes the entry with the specified key from the SqlCeConnectionStringBuilder instance.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Overrides Function Remove ( _
keyword As String _
) As Boolean
'Usage
Dim instance As SqlCeConnectionStringBuilder
Dim keyword As String
Dim returnValue As Boolean
returnValue = instance.Remove(keyword)
public override bool Remove(
string keyword
)
public:
virtual bool Remove(
String^ keyword
) override
abstract Remove :
keyword:string -> bool
override Remove :
keyword:string -> bool
public override function Remove(
keyword : String
) : boolean
Parameters
- keyword
Type: System.String
The key of the key/value pair to be removed from the connection string in this SqlCeConnectionStringBuilder.
Return Value
Type: System.Boolean
true if the key existed within the connection string and was removed; false if the key did not exist.