DispatchRuntime.MessageInspectors Property

Definition

Gets a collection of IDispatchMessageInspector objects that can be used to attach a custom message inspector for all incoming and outgoing messages across the endpoint.

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

Property Value

A SynchronizedCollection<T> object of type IDispatchMessageInspector.

Remarks

Use the MessageInspectors property to attach custom IDispatchMessageInspector objects that can inspect or transform all messages that flow through the endpoint. Because the IDispatchMessageInspector object gets a reference to the message, you can buffer it and examine a copy of the body.

Applies to