DS_NAME_ERROR (Enums)
Last changed: anonymous

.
Summary

C# Definition:

enum DS_NAME_ERROR {
  DS_NAME_NO_ERROR = 0,

  // Generic processing error.
  DS_NAME_ERROR_RESOLVING = 1,

  // Couldn't find the name at all - or perhaps caller doesn't have
  // rights to see it.
  DS_NAME_ERROR_NOT_FOUND = 2,

  // Input name mapped to more than one output name.
  DS_NAME_ERROR_NOT_UNIQUE = 3,

  // Input name found, but not the associated output format.
  // Can happen if object doesn't have all the required attributes.
  DS_NAME_ERROR_NO_MAPPING = 4,

  // Unable to resolve entire name, but was able to determine which
  // domain object resides in.  Thus DS_NAME_RESULT_ITEM?.pDomain
  // is valid on return.
  DS_NAME_ERROR_DOMAIN_ONLY = 5,

  // Unable to perform a purely syntactical mapping at the client
  // without going out on the wire.
  DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6,

  // The name is from an external trusted forest.
  DS_NAME_ERROR_TRUST_REFERRAL = 7
}

VB Definition:

Enum DS_NAME_ERROR
   TODO
End Enum

Notes:

None.

Documentation