System.Xml.Serialization.SerializationCodeGenerator.GetReadObjectCall C# (CSharp) Method

GetReadObjectCall() private method

private GetReadObjectCall ( XmlTypeMapping typeMap, string isNullable, string checkType ) : string
typeMap XmlTypeMapping
isNullable string
checkType string
return string
		string GetReadObjectCall (XmlTypeMapping typeMap, string isNullable, string checkType)
		{
			if (_format == SerializationFormat.Literal)
				return GetReadObjectName (typeMap) + " (" + isNullable + ", " + checkType + ")";
			else
				return GetCast (typeMap.TypeData, GetReadObjectName (typeMap) + " ()");
		}
		
SerializationCodeGenerator