GroupDataDisplayName Property |
Gets the friendly display name of the group.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [DataMemberAttribute(Name = "displayName", EmitDefaultValue = false)]
public string DisplayName { get; set; }
<DataMemberAttribute(Name := "displayName", EmitDefaultValue := false)>
Public Property DisplayName As String
Get
Set
public:
[DataMemberAttribute(Name = L"displayName", EmitDefaultValue = false)]
property String^ DisplayName {
String^ get ();
void set (String^ value);
}
[<DataMemberAttribute(Name = "displayName", EmitDefaultValue = false)>]
member DisplayName : string with get, set
Property Value
Type:
StringThe display name.
Remarks
For standard and built-in groups, this will just be the
Name.
For "tenant administrators" and "tenant members" groups, there are two cases. If the caller is associated with the
group's tenant, a localized version of "Administrators" or "Everyone" (respectively) will be returned. Otherwise,
the result will include the tenant name (for example "Tenant Members (ABC Tenant)").
See Also