System.ServiceModel.ServiceContractAttribute
namespace System.ServiceModel
{
public sealed class ServiceContractAttribute : Attribute
{
public string ConfigurationName { get; set; }
public string Name { get; set; }
public string Namespace { get; set; }
public ProtectionLevel ProtectionLevel { get; set; }
public bool HasProtectionLevel { get; }
public SessionMode SessionMode { get; set; }
public Type CallbackContract { get; set; }
public ServiceContractAttribute();
}
}