ContextMessageProperty Class
A property used to communicate context between the application and channel layers on either the client or the service.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | ContextMessageProperty() | Initializes a new instance of the ContextMessageProperty class. |
![]() | ContextMessageProperty(IDictionary(Of String, String)) | Initializes a new instance of the ContextMessageProperty class with a specified context. |
| Name | Description | |
|---|---|---|
![]() | AddOrReplaceInMessage(Message) | Sets the value of the ContextMessageProperty property in a specified Message from the current instance of ContextMessageProperty. |
![]() | AddOrReplaceInMessageProperties(MessageProperties) | Sets the value of the ContextMessageProperty property in a specified collection of MessageProperties from the current instance of ContextMessageProperty. |
![]() | CreateCopy() | Creates a copy of the current instance of ContextMessageProperty. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() ![]() | TryCreateFromHttpCookieHeader(String, ContextMessageProperty) | Attempts to instantiate a ContextMessageProperty from the key/value pairs of a specified HTTP cookie. |
![]() ![]() | TryGet(Message, ContextMessageProperty) | Attempts to get the ContextMessageProperty from the properties of a specified message. |
![]() ![]() | TryGet(MessageProperties, ContextMessageProperty) | Attempts to get the ContextMessageProperty from a specified collection of message properties. |
A collection of properties that are added to a Message that correlates messages that form part of a conversation between a client and a service.
If Enabled is true, context is established at the channel layer, and all incoming messages on the client and the service have this context property attached by the context channel. If Enabled is false the ContextMessageProperty is used to attach context to an outgoing message on the client or the service at the application layer.
The ContextMessageProperty can be used on the client or on the service. Alternatively, on the client only, the current context can be obtained or a new context can be set on channel instance using GetContext and SetContextproperties.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



