SfcTsqlProcFormatter.EscapeString Método
Escapes the specified string object. No haga referencia directamente a este miembro en el código. Admite la infraestructura de SQL Server.
Espacio de nombres: Microsoft.SqlServer.Management.Sdk.Sfc
Ensamblado: Microsoft.SqlServer.Management.Sdk.Sfc (en Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Sintaxis
'Declaración
Public Shared Function EscapeString ( _
value As String, _
charToEscape As Char _
) As String
'Uso
Dim value As String
Dim charToEscape As Char
Dim returnValue As String
returnValue = SfcTsqlProcFormatter.EscapeString(value, _
charToEscape)
public static string EscapeString(
string value,
char charToEscape
)
public:
static String^ EscapeString(
String^ value,
wchar_t charToEscape
)
static member EscapeString :
value:string *
charToEscape:char -> string
public static function EscapeString(
value : String,
charToEscape : char
) : String
Parámetros
- value
Tipo: System.String
The string that represents the value.
- charToEscape
Tipo: System.Char
The specified character to escape.
Valor devuelto
Tipo: System.String
The String that needs to be escaped.