Urn.UnEscapeString Method
Removes an escape string used in an XPathExpression. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Shared Function UnEscapeString ( _
escapedValue As String _
) As String
'Usage
Dim escapedValue As String
Dim returnValue As String
returnValue = Urn.UnEscapeString(escapedValue)
[ComVisibleAttribute(false)]
public static string UnEscapeString(
string escapedValue
)
[ComVisibleAttribute(false)]
public:
static String^ UnEscapeString(
String^ escapedValue
)
[<ComVisibleAttribute(false)>]
static member UnEscapeString :
escapedValue:string -> string
public static function UnEscapeString(
escapedValue : String
) : String
Parameters
- escapedValue
Type: System.String
The escape character '\' to remove.
Return Value
Type: System.String
A string value with the escape characters removed.