System.ServiceModel.OperationContractAttribute
namespace System.ServiceModel
{
public sealed class OperationContractAttribute : Attribute
{
public string Name { get; set; }
public string Action { get; set; }
public ProtectionLevel ProtectionLevel { get; set; }
public bool HasProtectionLevel { get; }
public string ReplyAction { get; set; }
public bool AsyncPattern { get; set; }
public bool IsOneWay { get; set; }
public bool IsInitiating { get; set; }
public bool IsTerminating { get; set; }
public OperationContractAttribute();
}
}