HostSecurityManagerOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the security policy components to be used by the host security manager.
This enumeration supports a bitwise combination of its member values.
public enum class HostSecurityManagerOptions
[System.Flags]
public enum HostSecurityManagerOptions
[System.Flags]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public enum HostSecurityManagerOptions
[<System.Flags>]
type HostSecurityManagerOptions =
[<System.Flags>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type HostSecurityManagerOptions =
Public Enum HostSecurityManagerOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Use none of the security policy components. |
HostAppDomainEvidence | 1 | Use the application domain evidence. |
HostPolicyLevel | 2 | Use the policy level specified in the DomainPolicy property. |
HostAssemblyEvidence | 4 | Use the assembly evidence. |
HostDetermineApplicationTrust | 8 | Route calls to the DetermineApplicationTrust(ActivationContext, TrustManagerContext) method to the DetermineApplicationTrust(Evidence, Evidence, TrustManagerContext) method first. |
HostResolvePolicy | 16 | Use the ResolvePolicy(Evidence) method to resolve the application evidence. |
AllFlags | 31 | Use all security policy components. |