System.ServiceModel.Description.FaultDescription
namespace System.ServiceModel.Description
{
public class FaultDescription
{
public string Action { get; }
public Type DetailType { get; set; }
public string Name { get; set; }
public string Namespace { get; set; }
public ProtectionLevel ProtectionLevel { get; set; }
public bool HasProtectionLevel { get; }
public FaultDescription(string action);
public bool ShouldSerializeProtectionLevel();
}
}