Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ICallContextInitializer Interface

 

Defines the methods that enable the initialization and recycling of thread-local storage with the thread that invokes user code.

Namespace:   System.ServiceModel.Dispatcher
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public interface class ICallContextInitializer

NameDescription
System_CAPS_pubmethodAfterInvoke(Object^)

Implement to participate in cleaning up the thread that invoked the operation.

System_CAPS_pubmethodBeforeInvoke(InstanceContext^, IClientChannel^, Message^)

Implement to participate in the initialization of the operation thread.

Implement the ICallContextInitializer interface and add it to the DispatchOperation::CallContextInitializers property to initialize and clean up thread-local storage for the thread that invokes user code. Typical usage is to set some value, such as impersonation or changing the System.Globalization::CultureInfo. If you wanted to establish some custom context, this is the extension point to initialize the static context property, which is then available for developers in the course of the operation.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft