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.
Returns the correct unquoted form of the specified identifier.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Overrides Function UnquoteIdentifier ( _
quotedIdentifier As String _
) As String
'Usage
Dim instance As SqlCeCommandBuilder
Dim quotedIdentifier As String
Dim returnValue As String
returnValue = instance.UnquoteIdentifier(quotedIdentifier)
public override string UnquoteIdentifier(
string quotedIdentifier
)
public:
virtual String^ UnquoteIdentifier(
String^ quotedIdentifier
) override
abstract UnquoteIdentifier :
quotedIdentifier:string -> string
override UnquoteIdentifier :
quotedIdentifier:string -> string
public override function UnquoteIdentifier(
quotedIdentifier : String
) : String
Parameters
- quotedIdentifier
Type: System.String
The identifier for which to return the unquoted form.
Return Value
Type: System.String
The identifier with all quotes removed.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | quotedIdentifier is nulla null reference (Nothing in Visual Basic). |
Remarks
Embedded quotes within the identifier are unescaped (removed).