System.Xml.Serialization.TypeData.TypeData C# (CSharp) Method

TypeData() private method

private TypeData ( string typeName, string fullTypeName, string xmlType, SchemaTypes schemaType, TypeData listItemTypeData ) : System
typeName string
fullTypeName string
xmlType string
schemaType SchemaTypes
listItemTypeData TypeData
return System
		internal TypeData (string typeName, string fullTypeName, string xmlType, SchemaTypes schemaType, TypeData listItemTypeData)
		{
			this.elementName = xmlType;
			this.typeName = typeName;
			this.fullTypeName = fullTypeName.Replace ('+', '.');
			this.listItemTypeData = listItemTypeData;
			this.sType = schemaType;
			this.hasPublicConstructor = true;
		}

Same methods

TypeData::TypeData ( Type type, string elementName, bool isPrimitive ) : System
TypeData::TypeData ( Type type, string elementName, bool isPrimitive, TypeData mappedType, XmlSchemaPatternFacet facet ) : System