PrincipalPolicy Enumeration
.NET Framework 3.0
Specifies how principal and identity objects should be created for an application domain. The default is UnauthenticatedPrincipal.
Namespace: System.Security.Principal
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Enumeration PrincipalPolicy 'Usage Dim instance As PrincipalPolicy
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public enum PrincipalPolicy
SerializableAttribute ComVisibleAttribute(true) public enum PrincipalPolicy
| Member name | Description | |
|---|---|---|
| NoPrincipal | No principal or identity objects should be created. | |
| UnauthenticatedPrincipal | Principal and identity objects for the unauthenticated entity should be created. An unauthenticated entity has Name set to the empty string ("") and IsAuthenticated set to false. | |
| WindowsPrincipal | Principal and identity objects that reflect the operating system token associated with the current execution thread should be created, and the associated operating system groups should be mapped into roles. |
For performance reasons, the default principal and identity objects are not created until they are needed. If a principal is explicitly added to the current thread, a default principal is not created and the principal policy setting is ignored.
A trusted host can override the default principal policy by specifying another of these values using the SetPrincipalPolicy method of an AppDomain.
Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: