Member.Attributes Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array of attributes.

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

Syntax

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

Property Value

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

A collection of type Attribute.

See Also

Member Class
Microsoft.MasterDataServices Namespace

Return to top