ExpressionNode.SerializeNode 메서드
Serializes the expression node to a text string.
네임스페이스: Microsoft.SqlServer.Management.Dmf
어셈블리: Microsoft.SqlServer.Dmf(Microsoft.SqlServer.Dmf.dll)
구문
‘선언
Public Shared Function SerializeNode ( _
node As ExpressionNode _
) As String
‘사용 방법
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
매개 변수
- node
유형: Microsoft.SqlServer.Management.Dmf.ExpressionNode
An ExpressionNode object value that specifies the expression node.
반환 값
유형: System.String
A String value that contains the serialized expression node in text format.
예
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);