Share via


BuildCollection<TValue>.Collection Property

 

Gets or sets the source collection.

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

Syntax

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

Property Value

Type: System.Activities.InArgument<IEnumerable<TValue>>

Returns the source collection.

See Also

BuildCollection<TValue> Class
Microsoft.Activities Namespace

Return to top