System.ServiceModel.FaultContractAttribute
namespace System.ServiceModel
{
public sealed class FaultContractAttribute : Attribute
{
public Type DetailType { get; }
public string Action { get; set; }
public string Name { get; set; }
public string Namespace { get; set; }
public ProtectionLevel ProtectionLevel { get; set; }
public bool HasProtectionLevel { get; }
public FaultContractAttribute(Type detailType);
}
}