IContextManager Interface

Definition

Defines an interface that allows you to get and set the context on the channel.

public interface class IContextManager
public interface IContextManager
type IContextManager = interface
Public Interface IContextManager

Remarks

For channels that use WSHttpContextBinding with the NotAllowed value set, the context cannot be retrieved on the client using IContextManager because a new channel that establishes a session is created each time GetProperty is called to enforce NotAllowed semantics on a channel. This means that even though the context is properly propagated back to the client in this case, it cannot be retrieved using IContextManager. You can still retrieve it using ContextMessageProperty as shown in the following code.

using (new OperationContextScope((IContextChannel)channel))  
{  
    channel.MyChannel("Test");  
    ContextMessageProperty context;  
    if (ContextMessageProperty.TryGet(OperationContext.Current.IncomingMessageProperties, out context))  
    {  
        Console.WriteLine(context.Count);  
    }  
}  

Properties

Enabled

Gets or sets a value that indicates whether the context management is enabled.

Methods

GetContext()

Gets the context.

SetContext(IDictionary<String,String>)

Sets the context.

Applies to