SplitKeyValuePair<TKey, TValue>.Value Property

 

Gets or sets the value of KeyValuePair.

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

Syntax

[DefaultValueAttribute(null)]
public OutArgument<TValue> Value {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[DefaultValueAttribute(null)]
property OutArgument<TValue>^ Value {
    [CompilerGeneratedAttribute]
    OutArgument<TValue>^ get();
    [CompilerGeneratedAttribute]
    void set(OutArgument<TValue>^ value);
}
[<DefaultValueAttribute(null)>]
member Value : OutArgument<'TValue> with get, set
<DefaultValueAttribute(Nothing)>
Public Property Value As OutArgument(Of TValue)

Property Value

Type: System.Activities.OutArgument<TValue>

Returns the value of the KeyValuePair.

See Also

SplitKeyValuePair<TKey, TValue> Class
Microsoft.Activities Namespace

Return to top