UnquoteIdentifier Method
Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier.
Syntax
'Declaration Public Overrides NotOverridable Function UnquoteIdentifier( _ ByVal quotedIdentifier As System.String _ ) As System.String
'Usage Dim instance As VistaDBCommandBuilder Dim quotedIdentifier As System.String Dim value As System.String value = instance.UnquoteIdentifier(quotedIdentifier)
public override System.string UnquoteIdentifier( System.string quotedIdentifier )
public function UnquoteIdentifier( quotedIdentifier: System.String ): System.String; override;
public override function UnquoteIdentifier( quotedIdentifier : System.String ) : System.String;
public: System.string* UnquoteIdentifier( System.string* quotedIdentifier ) override
public: System.String^ UnquoteIdentifier( System.String^ quotedIdentifier ) override
Parameters
- quotedIdentifier
- The identifier that will have its embedded quotes removed.
Return Value
The unquoted identifier, with embedded quotes properly un-escaped.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also