AttributeGroup.Attributes Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the list of attributes contained in the attribute group.

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

Syntax

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

Property Value

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

The list of attributes contained in the attribute group.

See Also

AttributeGroup Class
Microsoft.MasterDataServices.Services.DataContracts Namespace

Return to top