System.Runtime.Serialization.XsdDataContractExporter
namespace System.Runtime.Serialization
{
public class XsdDataContractExporter
{
public ExportOptions Options { get; set; }
public XmlSchemaSet Schemas { get; }
public XsdDataContractExporter();
public XsdDataContractExporter(XmlSchemaSet schemas);
public bool CanExport(ICollection<Assembly> assemblies);
public bool CanExport(ICollection<Type> types);
public bool CanExport(Type type);
public void Export(ICollection<Assembly> assemblies);
public void Export(ICollection<Type> types);
public void Export(Type type);
public XmlQualifiedName GetRootElementName(Type type);
public XmlSchemaType GetSchemaType(Type type);
public XmlQualifiedName GetSchemaTypeName(Type type);
}
}