RegistrationClassContext Enumeration
Specifies the set of execution contexts in which a class object will be made available for requests to construct instances.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| DisableActivateAsActivator | Disables activate-as-activator (AAA) activations for this activation only. | |
| EnableActivateAsActivator | Enables activate-as-activator (AAA) activations for this activation only. | |
| EnableCodeDownload | Allows the downloading of code from the Directory Service or the Internet. | |
| FromDefaultContext | Begin this activation from the default context of the current apartment. | |
| InProcessHandler | The code that manages objects of this class is an in-process handler. | |
| InProcessHandler16 | Not used. | |
| InProcessServer | The code that creates and manages objects of this class is a DLL that runs in the same process as the caller of the function specifying the class context. | |
| InProcessServer16 | Not used. | |
| LocalServer | The EXE code that creates and manages objects of this class runs on same machine but is loaded in a separate process space. | |
| NoCodeDownload | Disallows the downloading of code from the Directory Service or the Internet. | |
| NoCustomMarshal | Specifies whether activation fails if it uses custom marshaling. | |
| NoFailureLog | Overrides the logging of failures. | |
| RemoteServer | A remote machine context. | |
| Reserved1 | Not used. | |
| Reserved2 | Not used. | |
| Reserved3 | Not used. | |
| Reserved4 | Not used. | |
| Reserved5 | Not used. |
The values in the RegistrationClassContext enumeration are used in the classContext parameter of the RegisterTypeForComClients method. These values are the same as those defined in the COM CLSCTX enumeration, which is used as the dwClsContext parameter in calls to the COM API CoRegisterClassObject.
For more information about CoRegisterClassObject and the CLSCTX enumeration, see the MSDN library.
Available since 2.0