System.Xml.Serialization.Advanced.MappedTypeDesc.MappedTypeDesc C# (CSharp) 메소드

MappedTypeDesc() 개인적인 메소드

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
리턴 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;
        }