Share via


GetDictionaryValue<TKey, TValue> Constructor

 

Initializes a new instance of the GetDictionaryValue<TKey, TValue> class.

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

Overload List

Name Description
System_CAPS_pubmethod GetDictionaryValue<TKey, TValue>()

Initializes a new instance of the GetDictionaryValue<TKey, TValue> class.

System_CAPS_pubmethod GetDictionaryValue<TKey, TValue>(InArgument<IDictionary<TKey, TValue>>, InArgument<TKey>)

Initializes a new instance of the GetDictionaryValue<TKey, TValue> class.

See Also

GetDictionaryValue<TKey, TValue> Class
Microsoft.Activities Namespace

Return to top

GetDictionaryValue<TKey, TValue> Constructor ()

Initializes a new instance of the GetDictionaryValue<TKey, TValue> class.

Syntax

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

Return to top

GetDictionaryValue<TKey, TValue> Constructor (InArgument<IDictionary<TKey, TValue>>, InArgument<TKey>)

Initializes a new instance of the GetDictionaryValue<TKey, TValue> class.

Syntax

public GetDictionaryValue(
    InArgument<IDictionary<TKey, TValue>> dictionary,
    InArgument<TKey> key
)
public:
GetDictionaryValue(
    InArgument<IDictionary<TKey, TValue>^>^ dictionary,
    InArgument<TKey>^ key
)
new : 
        dictionary:InArgument<IDictionary<'TKey, 'TValue>> *
        key:InArgument<'TKey> -> GetDictionaryValue
Public Sub New (
    dictionary As InArgument(Of IDictionary(Of TKey, TValue)),
    key As InArgument(Of TKey)
)

Parameters

Return to top