System.ServiceModel.Dispatcher.DispatchOperation
namespace System.ServiceModel.Dispatcher
{
public sealed class DispatchOperation
{
public bool IsOneWay { get; }
public string Action { get; }
public SynchronizedCollection<FaultContractInfo> FaultContractInfos { get; }
public bool AutoDisposeParameters { get; set; }
public IOperationInvoker Invoker { get; set; }
public bool IsTerminating { get; set; }
public string Name { get; }
public SynchronizedCollection<IParameterInspector> ParameterInspectors { get; }
public DispatchRuntime Parent { get; }
public string ReplyAction { get; }
public bool DeserializeRequest { get; set; }
public bool SerializeReply { get; set; }
public DispatchOperation(DispatchRuntime parent, string name, string action);
public DispatchOperation(DispatchRuntime parent, string name, string action, string replyAction);
}
}