@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The SECURITY_IMPERSONATION_LEVEL enumeration type contains values that specify security impersonation levels. Security impersonation levels govern the degree to which a server process can act on behalf of a client process. !!!!C# Definition: public enum SECURITY_IMPERSONATION_LEVEL { SecurityAnonymous, SecurityIdentification, SecurityImpersonation, SecurityDelegation } !!!!VB Definition: Enum SECURITY_IMPERSONATION_LEVEL SecurityAnonymous SecurityIdentification SecurityImpersonation SecurityDelegation End Enum !!!!Notes: None. Documentation: SECURITY_IMPERSONATION_LEVEL@msdn on MSDN !!!!VB.NET definition with enumeration for the C++ constants: Public Enum SecurityImpersonationLevel SecurityAnonymous = 0 SecurityIdentification = 1 SecurityImpersonation = 2 SecurityDelegation = 3 End Enum !!!!Notes: Following friendlier VB naming/capitalization standards is this example, however the naming convention is meaningless and personal choice, so long as the correct value gets used where it's needed.
Edit Enums.SECURITY_IM...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.