Member.Collections Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the collection which the member is in.

Namespace:   Microsoft.MasterDataServices.Services.DataContracts
Assembly:  Microsoft.MasterDataServices.Services.Contracts (in Microsoft.MasterDataServices.Services.Contracts.dll)

Syntax

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

Property Value

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

The collection which the member is in.

See Also

Member Class
Microsoft.MasterDataServices.Services.DataContracts Namespace

Return to top