DynamicForEach<T>.Values Property

 

Gets or sets the collection of values to iterate over.

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

Syntax

[RequiredArgumentAttribute]
[DefaultValueAttribute(null)]
public InArgument<IDictionary<string, T>> Values {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[RequiredArgumentAttribute]
[DefaultValueAttribute(null)]
property InArgument<IDictionary<String^, T>^>^ Values {
    [CompilerGeneratedAttribute]
    InArgument<IDictionary<String^, T>^>^ get();
    [CompilerGeneratedAttribute]
    void set(InArgument<IDictionary<String^, T>^>^ value);
}
[<RequiredArgumentAttribute>]
[<DefaultValueAttribute(null)>]
member Values : InArgument<IDictionary<string, 'T>> with get, set
<RequiredArgumentAttribute>
<DefaultValueAttribute(Nothing)>
Public Property Values As InArgument(Of IDictionary(Of String, T))

Property Value

Type: System.Activities.InArgument<IDictionary<String, T>>

Returns the collection of values.

See Also

DynamicForEach<T> Class
Microsoft.Activities Namespace

Return to top