LogOnOptionsCustomAttributes Property |
Gets or sets a collection containing custom attribute values which will be added to the logon session.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.4.0.1000)
Syntax [DataMemberAttribute(Name = "customAttributes", EmitDefaultValue = false)]
public ICollection<CustomAttributeData> CustomAttributes { get; }
<DataMemberAttribute(Name := "customAttributes", EmitDefaultValue := false)>
Public ReadOnly Property CustomAttributes As ICollection(Of CustomAttributeData)
Get
public:
[DataMemberAttribute(Name = L"customAttributes", EmitDefaultValue = false)]
property ICollection<CustomAttributeData^>^ CustomAttributes {
ICollection<CustomAttributeData^>^ get ();
}
[<DataMemberAttribute(Name = "customAttributes", EmitDefaultValue = false)>]
member CustomAttributes : ICollection<CustomAttributeData> with get
Property Value
Type:
ICollectionCustomAttributeDataRemarks
This property will only be considered if a value is specifed for
EffectiveAccountName or
EffectiveCredentials.
If the session's effective attributes already contains one specified by this property, it will be replaced by that value.
See Also