System.Runtime.Serialization.DataContractAttribute
namespace System.Runtime.Serialization
{
public sealed class DataContractAttribute : Attribute
{
public bool IsNameSetExplicitly { get; }
public bool IsNamespaceSetExplicitly { get; }
public bool IsReference { get; set; }
public bool IsReferenceSetExplicitly { get; }
public string Name { get; set; }
public string Namespace { get; set; }
public DataContractAttribute();
}
}