System.ServiceModel.Dispatcher.DispatchOperation
namespace System.ServiceModel.Dispatcher
{
public sealed class DispatchOperation
{
public string Action { get; }
public bool AutoDisposeParameters { get; set; }
public bool DeserializeRequest { get; set; }
public bool IsOneWay { get; }
public string Name { get; }
public DispatchRuntime Parent { get; }
public bool SerializeReply { get; set; }
public DispatchOperation(DispatchRuntime parent, string name, string action);
}
}