Deserialize Método (String)
Deserializes an expression node from a string.
Espacio de nombres: Microsoft.SqlServer.Management.Dmf
Ensamblado: Microsoft.SqlServer.Dmf (en Microsoft.SqlServer.Dmf.dll)
Sintaxis
'Declaración
Public Shared Function Deserialize ( _
value As String _
) As ExpressionNode
'Uso
Dim value As String
Dim returnValue As ExpressionNode
returnValue = ExpressionNode.Deserialize(value)
public static ExpressionNode Deserialize(
string value
)
public:
static ExpressionNode^ Deserialize(
String^ value
)
static member Deserialize :
value:string -> ExpressionNode
public static function Deserialize(
value : String
) : ExpressionNode
Parámetros
- value
Tipo: System. . :: . .String
A String that specifies the string that contains the expression node text.
Valor devuelto
Tipo: Microsoft.SqlServer.Management.Dmf. . :: . .ExpressionNode
An ExpressionNode object value that specifies the deserialized expression node.
Vea también