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.
Serializes the expression node to a text string.
Namespace: Microsoft.SqlServer.Management.Dmf
Assembly: Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)
Syntax
'Declaration
Public Shared Function SerializeNode ( _
node As ExpressionNode _
) As String
'Usage
Dim node As ExpressionNode
Dim returnValue As String
returnValue = ExpressionNode.SerializeNode(node)
public static string SerializeNode(
ExpressionNode node
)
public:
static String^ SerializeNode(
ExpressionNode^ node
)
static member SerializeNode :
node:ExpressionNode -> string
public static function SerializeNode(
node : ExpressionNode
) : String
Parameters
- node
Type: Microsoft.SqlServer.Management.Dmf.ExpressionNode
An ExpressionNode object value that specifies the expression node.
Return Value
Type: System.String
A String value that contains the serialized expression node in text format.
Examples
C#
string name = "my_name ";
ExpressionNode cnst1 = new ExpressionNodeConstant (name);
ExpressionNode attr1 = new ExpressionNodeAttribute ("Attribute");
ExpressionNode op1 = new ExpressionNodeOperator (OperatorType.EQ, attr1, cnst1);
string s = ExpressionNode.SerializeNode (op1);