Class SupportedForest
Contains details about supported forest configuration
Inheritance
System.Object
SupportedForest
Namespace: AdmPwd.Types
Assembly: AdmPwd.PDSWrapper.dll
Syntax
public class SupportedForest : Object
Constructors
SupportedForest(string, NetworkCredential, Nullable<uint>, bool)
Default constructor
Declaration
public SupportedForest(string name, NetworkCredential credential, Nullable<uint> keyId, bool overrideForestName)
Parameters
Type | Name | Description |
---|---|---|
string | name | Dns name of the forest |
System.Net.NetworkCredential | credential | Credential used by PDS to connect to forest |
System.Nullable<><uint> | keyId | ID of key used to protect password of credential in config file |
bool | overrideForestName | When set to true, and configured forest name differs from real name, ignore real forest name and always use configured one |
Properties
ForestName
DNS name of AD forest
Declaration
public string ForestName { get; }
Property Value
Type | Description |
---|---|
string |
KeyId
ID of encryption key that was used to encrypt the password in config file
Declaration
public Nullable<uint> KeyId { get; }
Property Value
Type | Description |
---|---|
System.Nullable<><uint> |
OverrideForestName
Keep it on false unless you know what you're doing
Declaration
public bool OverrideForestName { get; }
Property Value
Type | Description |
---|---|
bool |
User
Credential to use by PDS when connecting to the forest
Declaration
public NetworkCredential User { get; }
Property Value
Type | Description |
---|---|
System.Net.NetworkCredential |