Desktop Functions: Smart Device Functions:
|
Search Results for "DS_NAME_ERROR" in [All]ntdsapi1: DsCrackNames
public enum DS_NAME_ERROR
DS_NAME_ERROR_RESOLVING = 1,
DS_NAME_ERROR_NOT_FOUND = 2,
DS_NAME_ERROR_NOT_UNIQUE = 3,
DS_NAME_ERROR_NO_MAPPING = 4,
DS_NAME_ERROR_DOMAIN_ONLY = 5,
DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6,
DS_NAME_ERROR_TRUST_REFERRAL = 7
// going out on the wire. Returns DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING
if (res == null || res.Length == 0 || res[0].status != NativeMethods.DS_NAME_ERROR.DS_NAME_NO_ERROR)
public DS_NAME_ERROR status;
if (status == DS_NAME_ERROR.DS_NAME_NO_ERROR) Enums
enum DS_NAME_ERROR {
DS_NAME_ERROR_RESOLVING = 1,
DS_NAME_ERROR_NOT_FOUND = 2,
DS_NAME_ERROR_NOT_UNIQUE = 3,
DS_NAME_ERROR_NO_MAPPING = 4,
DS_NAME_ERROR_DOMAIN_ONLY = 5,
DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6,
DS_NAME_ERROR_TRUST_REFERRAL = 7
Enum DS_NAME_ERROR
// going out on the wire. Returns DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING Constants4: WINERROR
public const int ERROR_DS_NAME_ERROR_RESOLVING = 8469;
public const int ERROR_DS_NAME_ERROR_NOT_FOUND = 8470;
public const int ERROR_DS_NAME_ERROR_NOT_UNIQUE = 8471;
public const int ERROR_DS_NAME_ERROR_NO_MAPPING = 8472;
public const int ERROR_DS_NAME_ERROR_DOMAIN_ONLY = 8473;
public const int ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 8474;
public const int ERROR_DS_NAME_ERROR_TRUST_REFERRAL = 8583; Structures
DS_NAME_ERROR status; |