Member.Collections Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array of master data collections that includes collection type parent members.

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

Syntax

[DataMemberAttribute(EmitDefaultValue = false)]
public Collection<Collection> Collections { get; set; }
public:
[DataMemberAttribute(EmitDefaultValue = false)]
property Collection<Collection^>^ Collections {
    Collection<Collection^>^ get();
    void set(Collection<Collection^>^ value);
}
[<DataMemberAttribute(EmitDefaultValue = false)>]
member Collections : Collection<Collection> with get, set
<DataMemberAttribute(EmitDefaultValue := False)>
Public Property Collections As Collection(Of Collection)

Property Value

Type: System.Collections.ObjectModel.Collection<Collection>

A collection.

See Also

Member Class
Microsoft.MasterDataServices Namespace

Return to top