mscorlib(4.0.0.0) API with additions
HostProtectionResource.cs
2 
4 {
7  [Flags]
8  [ComVisible(true)]
10  {
12  None = 0x0,
14  Synchronization = 0x1,
16  SharedState = 0x2,
18  ExternalProcessMgmt = 0x4,
22  ExternalThreading = 0x10,
28  UI = 0x80,
30  MayLeakOnAbort = 0x100,
32  All = 0x1FF
33  }
34 }
Exposes state that might be shared between threads.
Might cause a resource leak on termination, if not protected by a safe handle or some other means of ...
Definition: __Canon.cs:3
HostProtectionResource
Specifies categories of functionality potentially harmful to the host if invoked by a method or class...
Might exit the current process, terminating the server.
Attribute can be applied to any application element.
Manipulates threads in a way that only affects user code.
Creates or manipulates threads other than its own, which might be harmful to the host.
Specifies that the class can be serialized.