System.Xml.Serialization.SoapReflectionImporter.CreateRootMapping C# (CSharp) Метод

CreateRootMapping() приватный Метод

private CreateRootMapping ( ) : StructMapping
Результат StructMapping
        StructMapping CreateRootMapping() {
            TypeDesc typeDesc = typeScope.GetTypeDesc(typeof(object));
            StructMapping mapping = new StructMapping();
            mapping.IsSoap = true;
            mapping.TypeDesc = typeDesc;
            mapping.Members = new MemberMapping[0];
            mapping.IncludeInSchema = false;
            mapping.TypeName = Soap.UrType;
            mapping.Namespace = XmlSchema.Namespace;
            return mapping;
        }