System.ServiceModel.Description.OperationDescription
namespace System.ServiceModel.Description
{
public class OperationDescription
{
public KeyedByTypeCollection<IOperationBehavior> Behaviors { get; }
public ContractDescription DeclaringContract { get; set; }
public FaultDescriptionCollection Faults { get; }
public bool IsOneWay { get; }
public Collection<Type> KnownTypes { get; }
public MessageDescriptionCollection Messages { get; }
public string Name { get; }
public KeyedCollection<Type, IOperationBehavior> OperationBehaviors { get; }
public MethodInfo TaskMethod { get; set; }
public MethodInfo BeginMethod { get; set; }
public MethodInfo EndMethod { get; set; }
public MethodInfo SyncMethod { get; set; }
public OperationDescription(string name, ContractDescription declaringContract);
}
}