System.Xml.Serialization.SoapSchemaExporter.ExportRootMapping C# (CSharp) Method

ExportRootMapping() private method

private ExportRootMapping ( StructMapping mapping ) : XmlQualifiedName
mapping StructMapping
return System.Xml.XmlQualifiedName
        XmlQualifiedName ExportRootMapping(StructMapping mapping) {
            if (!exportedRoot) {
                exportedRoot = true;
                ExportDerivedMappings(mapping);
            }
            return new XmlQualifiedName(Soap.UrType, XmlSchema.Namespace);
        }