Share via


SplitKeyValuePair<TKey, TValue>.Input Property

 

Gets or sets the KeyValuePair to split.

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

Syntax

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

Property Value

Type: System.Activities.InArgument<KeyValuePair<TKey, TValue>>

Returns the KeyValuePair to split.

See Also

SplitKeyValuePair<TKey, TValue> Class
Microsoft.Activities Namespace

Return to top