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 FaultDescription(string action);
}
}