Specifies the user password used to authenticate to a given directory server. To set the property value, you pass in an encrypted byte array. (See Encryption.Encrypt for information on encrypting the input.) Security measures prevent actual passwords from being returned; instead, this property returns a zero-length byte array instead, giving an indication that the property value has been set, or null if the password has not been set.


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property DirectoryServerPassword As Byte()
C#
byte[] DirectoryServerPassword { get; set; }
C++
property byte[] DirectoryServerPassword abstract  {
    array<char>^ get();
    void set(array<char>^ value);
}
J#
/** property */
public byte[] get_DirectoryServerPassword();

/** property */
public void set_DirectoryServerPassword(byte[] value);
JScript
public function get DirectoryServerPassword() : Byte[]

public function set DirectoryServerPassword(value : Byte[]);

Remarks

See Also