ServiceDomain.Enter Method
Creates the context specified by the ServiceConfig object and pushes it onto the context stack to become the current context.
[Visual Basic] Public Shared Sub Enter( _ ByVal cfg As ServiceConfig _ ) [C#] public static void Enter( ServiceConfig cfg ); [C++] public: static void Enter( ServiceConfig* cfg ); [JScript] public static function Enter( cfg : ServiceConfig );
Parameters
- cfg
- A ServiceConfig that contains the configuration information for the services to be used within the enclosed code.
Exceptions
| Exception Type | Condition |
|---|---|
| PlatformNotSupportedException | ServiceConfig is not supported on the current platform. |
Remarks
Enter first creates a context configured as specified by the ServiceConfig object that is passed as the cfg parameter. Policies on both the client and server sides are then triggered as if a method call had occurred. The new context is then pushed onto a context stack and becomes the current context. Because of their efficient design and because no thread marshaling is involved, using Enter and Leave involves significantly reduced overhead compared to an equivalent method call.
Requirements
Platforms: Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
ServiceDomain Class | ServiceDomain Members | System.EnterpriseServices Namespace