ServiceDomain.Enter(ServiceConfig) Method

Definition

Creates the context specified by the ServiceConfig object and pushes it onto the context stack to become the current context.

public:
 static void Enter(System::EnterpriseServices::ServiceConfig ^ cfg);
public static void Enter (System.EnterpriseServices.ServiceConfig cfg);
static member Enter : System.EnterpriseServices.ServiceConfig -> unit
Public Shared Sub Enter (cfg As ServiceConfig)

Parameters

cfg
ServiceConfig

A ServiceConfig that contains the configuration information for the services to be used within the enclosed code.

Exceptions

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.

Applies to