System.Xml.Serialization.SerializationCodeGenerator.GetReadObjectCall C# (CSharp) 메소드

GetReadObjectCall() 개인적인 메소드

private GetReadObjectCall ( XmlTypeMapping typeMap, string isNullable, string checkType ) : string
typeMap XmlTypeMapping
isNullable string
checkType string
리턴 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