Interface ComContext
public interface ComContext
{
// Fields
public static final int INPROC_HANDLER;
public static final int INPROC_HANDLER16;
public static final int INPROC_HANDLERX86;
public static final int INPROC_SERVER;
public static final int INPROC_SERVER16;
public static final int INPROC_SERVERX86;
public static final int LOCAL_SERVER;
public static final int REMOTE_SERVER;
}
This class defines constants that specify the contexts that a Component Object Model (COM) class can run in.
- INPROC_HANDLER
- A handler DLL that runs in the same process as the caller.
- INPROC_HANDLER16
- A 16-bit handler DLL that runs in the same process as the caller.
- INPROC_HANDLERX86
- An x86 handler DLL that runs in the same process as the caller.
- INPROC_SERVER
- A server DLL that runs in the same process as the caller.
- INPROC_SERVER16
- A 16-bit server DLL that runs in the same process as the caller.
- INPROC_SERVERX86
- An x86 server DLL that runs in the same process as the caller.
- LOCAL_SERVER
- A server .exe file that runs on the same computer as the caller but in a different process.
- REMOTE_SERVER
- A remote server .exe file that runs on a different computer than the caller does.