ResourceScope Enumeration
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| AppDomain | The state is shared by objects within an AppDomain. | |
| Assembly | The resource is visible at an assembly scope. | |
| Library | The state is shared by objects within a library. | |
| Machine | The state is shared by objects within the machine. | |
| None | There is no shared state. | |
| Private | The resource is visible to only the type. | |
| Process | The state is shared within a process. |
A resource is an object that holds state. Examples of resources include a file on disk, a message queue for a process, and a named Mutex. Knowing an object is a resource does not indicate its appropriate use; the important property of a resource is the scope of the resource. The scope includes both the type and the visibility of the resource. The resource type specifies whether the resource is a machine-level resource, such as a file on disk, a process-wide resource, such as a block of non-shared memory, or an application domain-level resource, such as a lock on an instance of a non-marshal by reference object. The visibility scopes are Assembly and Private, the default is Public, which is implicit if Private or Assembly are not indicated. There is no enumeration value for Public.
Windows 98, 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.