SecurityPrincipals.Groups Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array of security groups.

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

Syntax

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

Property Value

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

A collection of type Group.

See Also

SecurityPrincipals Class
Microsoft.MasterDataServices Namespace

Return to top