IAdmAttributeAlias

The IAdmAttributeAlias interface represents an alias for directory object properties.

Inheritance: IUnknown

The IAdmAttributeAlias interface is implemented by the AdmAttributeAlias class.

 How to create an instance of the class
PowerShell
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")

$attributeAlias = New-Object "Softerra.Adaxes.Management.AdmAttributeAlias"
C#
using Softerra.Adaxes.Management;

class Program
{
    static void Main(string[] args)
    {
        AdmAttributeAlias attributeAlias  = new AdmAttributeAlias();
    }
}

Properties

  • Property

  • Description

  • AliasName

  • Gets or sets the alias name.

  • AttributeNames

  • Gets or sets an array of directory object properties for the alias.

Details

AliasName

Gets or sets the alias name.

  • Type:
  • string
  • Access:
  • Read/Write

AttributeNames

Gets or sets an array of directory object properties for the alias.

  • Type:
  • string[]
  • Access:
  • Read/Write

Remarks

The alias resolves into the name of the first directory object property from the array. For example, if the array contains the ou and cn properties, the alias will resolve into the cn property for users and into the ou property for organizational units.


Requirements

Minimum required version: 2018.1

See also