다음을 통해 공유


ConstructNode 메서드

Creates a new expression node.

네임스페이스:  Microsoft.SqlServer.Management.Dmf
어셈블리:  Microsoft.SqlServer.Dmf(Microsoft.SqlServer.Dmf.dll)

구문

‘선언
<STraceConfigurationAttribute(SkipAutoTrace := True)> _
Public Shared Function ConstructNode ( _
    obj As Object _
) As ExpressionNode
‘사용 방법
Dim obj As Object
Dim returnValue As ExpressionNode

returnValue = ExpressionNode.ConstructNode(obj)
[STraceConfigurationAttribute(SkipAutoTrace = true)]
public static ExpressionNode ConstructNode(
    Object obj
)
[STraceConfigurationAttribute(SkipAutoTrace = true)]
public:
static ExpressionNode^ ConstructNode(
    Object^ obj
)
[<STraceConfigurationAttribute(SkipAutoTrace = true)>]
static member ConstructNode : 
        obj:Object -> ExpressionNode 
public static function ConstructNode(
    obj : Object
) : ExpressionNode

매개 변수

반환 값

유형: Microsoft.SqlServer.Management.Dmf. . :: . .ExpressionNode
An ExpressionNode object that represents the new expression node.

주의

C#

DateTime today = DateTime.Today;
arg1 = ExpressionNode.ConstructNode(today);