Share via


DispatchOperation.ParameterInspectors 属性

定义

获取或设置 IParameterInspector 对象的集合,这些对象可以检查和修改特定代理方法的入站对象和出站对象。

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

属性值

IParameterInspector 实现的集合。

注解

使用 ParameterInspectors 属性插入自定义 IParameterInspector 实现或修改当前实现。 对于请求,参数检查器是按它们添加到集合的顺序来调用的;对于回复,则按相反的顺序调用。

适用于