Open this page in the API Guide

LogOnTokenOptions.EffectiveAccountName Property

Gets or sets a LogOnCredential corresponding to AccountName in the EffectiveCredentials collection.

Namespace:  Dundas.BI.WebApi.Models
Assembly:  Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
[DataMemberAttribute(Name = "effectiveAccountName", EmitDefaultValue = false)]
public string? EffectiveAccountName { get; set; }

Property Value

Type: String
The log on credential in EffectiveCredentials corresponding to AccountName, or null if there is no such credential.
Exceptions
ExceptionCondition
ArgumentExceptionThe value is being assigned to an empty string.
Remarks

This property is a shortcut for getting/setting a LogOnCredential corresponding to AccountName in the EffectiveCredentials collection.

When setting this property to null, EffectiveCredentials will be also set to null. Otherwise, EffectiveCredentials will be set to a new collection containing only a LogOnCredential corresponding to AccountName.

See Also