System.Xml.Serialization.Advanced.MappedTypeDesc.MappedTypeDesc C# (CSharp) Méthode

MappedTypeDesc() private méthode

private MappedTypeDesc ( string clrType, string name, string ns, XmlSchemaType xsdType, XmlSchemaObject context, SchemaImporterExtension extension, CodeNamespace code, StringCollection references ) : System.Xml.Schema
clrType string
name string
ns string
xsdType System.Xml.Schema.XmlSchemaType
context System.Xml.Schema.XmlSchemaObject
extension SchemaImporterExtension
code System.CodeDom.CodeNamespace
references System.Collections.Specialized.StringCollection
Résultat System.Xml.Schema
        internal MappedTypeDesc(string clrType, string name, string ns, XmlSchemaType xsdType, XmlSchemaObject context, SchemaImporterExtension extension, CodeNamespace code, StringCollection references) {
            this.clrType = clrType.Replace('+', '.');
            this.name = name;
            this.ns = ns;
            this.xsdType = xsdType;
            this.context = context;
            this.code = code;
            this.references = references;
            this.extension = extension;
        }