Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

DS_NAME_ERROR (Enums)
 
.
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
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions