DispatchOperation.CallContextInitializers Property

Definition

A collection of ICallContextInitializer objects that defines the methods that enable the initialization and recycling of thread-local storage with the thread that invokes user code.

public:
 property System::Collections::Generic::SynchronizedCollection<System::ServiceModel::Dispatcher::ICallContextInitializer ^> ^ CallContextInitializers { System::Collections::Generic::SynchronizedCollection<System::ServiceModel::Dispatcher::ICallContextInitializer ^> ^ get(); };
public System.Collections.Generic.SynchronizedCollection<System.ServiceModel.Dispatcher.ICallContextInitializer> CallContextInitializers { get; }
member this.CallContextInitializers : System.Collections.Generic.SynchronizedCollection<System.ServiceModel.Dispatcher.ICallContextInitializer>
Public ReadOnly Property CallContextInitializers As SynchronizedCollection(Of ICallContextInitializer)

Property Value

A collection of ICallContextInitializer objects.

Remarks

Use the CallContextInitializers property to add custom ICallContextInitializer objects that add state to the call context for the duration of the call and can retrieve it subsequent to the completion of the call but prior to returning the message.

Applies to