HostProtectionResource Enumeration
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Security.PermissionsAssembly: mscorlib (in mscorlib.dll)
[SerializableAttribute] [FlagsAttribute] [ComVisibleAttribute(true)] public enum HostProtectionResource
/** @attribute SerializableAttribute() */ /** @attribute FlagsAttribute() */ /** @attribute ComVisibleAttribute(true) */ public enum HostProtectionResource
SerializableAttribute FlagsAttribute ComVisibleAttribute(true) public enum HostProtectionResource
| Member name | Description | |
|---|---|---|
| All | Exposes all host resources. | |
| ExternalProcessMgmt | Might create or destroy other processes. | |
| ExternalThreading | Creates or manipulates threads other than its own, which might be harmful to the host. | |
| MayLeakOnAbort | Might cause a resource leak on termination, if not protected by a safe handle or some other means of ensuring the release of resources. | |
| None | Exposes no host resources. | |
| SecurityInfrastructure | Exposes the security infrastructure. | |
| SelfAffectingProcessMgmt | Might exit the current process, terminating the server. | |
| SelfAffectingThreading | Manipulates threads in a way that only affects user code. | |
| SharedState | Exposes state that might be shared between threads. | |
| Synchronization | Exposes synchronization. | |
| UI | Exposes the user interface. |
This enumeration is used by the HostProtectionAttribute attribute.
The following code example shows the use of the HostProtectionResource enumeration with the HostProtectionAttribute attribute. This example is part of a larger example provided for the HostProtectionAttribute class.
// Use the enumeration flags to indicate that this method exposes // shared state and self-affecting process management. // Either of the following attribute statements can be used to set the // resource flags. [HostProtectionAttribute(SharedState = true, SelfAffectingProcessMgmt = true)] [HostProtectionAttribute(Resources = HostProtectionResource.SharedState | HostProtectionResource.SelfAffectingProcessMgmt)] private static void Exit(string Message, int Code) { // Exit the sample when an exception is thrown. Console.WriteLine("\nFAILED: " + Message + " " + Code.ToString()); Environment.ExitCode = Code; Environment.Exit(Code); }
Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.