Share via


GetDynamicValueProperty<T> Constructor

 

Initializes a new instance of the GetDynamicValueProperty<T> class.

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Overload List

Name Description
System_CAPS_pubmethod GetDynamicValueProperty<T>()

Initializes a new instance of the GetDynamicValueProperty<T> class.

System_CAPS_pubmethod GetDynamicValueProperty<T>(InArgument<DynamicValue>)

Initializes a new instance of the GetDynamicValueProperty<T> class.

System_CAPS_pubmethod GetDynamicValueProperty<T>(InArgument<DynamicValue>, InArgument<String>)

Initializes a new instance of the GetDynamicValueProperty<T> class.

See Also

GetDynamicValueProperty<T> Class
Microsoft.Activities Namespace

Return to top

GetDynamicValueProperty<T> Constructor ()

Initializes a new instance of the GetDynamicValueProperty<T> class.

Syntax

public GetDynamicValueProperty()
public:
GetDynamicValueProperty()
new : unit -> GetDynamicValueProperty
Public Sub New

Return to top

GetDynamicValueProperty<T> Constructor (InArgument<DynamicValue>)

Initializes a new instance of the GetDynamicValueProperty<T> class.

Syntax

public GetDynamicValueProperty(
    InArgument<DynamicValue> source
)
public:
GetDynamicValueProperty(
    InArgument<DynamicValue^>^ source
)
new : 
        source:InArgument<DynamicValue> -> GetDynamicValueProperty
Public Sub New (
    source As InArgument(Of DynamicValue)
)

Parameters

Return to top

GetDynamicValueProperty<T> Constructor (InArgument<DynamicValue>, InArgument<String>)

Initializes a new instance of the GetDynamicValueProperty<T> class.

Syntax

public GetDynamicValueProperty(
    InArgument<DynamicValue> source,
    InArgument<string> propertyName
)
public:
GetDynamicValueProperty(
    InArgument<DynamicValue^>^ source,
    InArgument<String^>^ propertyName
)
new : 
        source:InArgument<DynamicValue> *
        propertyName:InArgument<string> -> GetDynamicValueProperty
Public Sub New (
    source As InArgument(Of DynamicValue),
    propertyName As InArgument(Of String)
)

Parameters

Return to top