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

GetWriteObjectCallbackName() private method

private GetWriteObjectCallbackName ( XmlTypeMapping typeMap ) : string
typeMap XmlTypeMapping
return string
		string GetWriteObjectCallbackName (XmlTypeMapping typeMap)
		{
			if (!_mapsToGenerate.Contains (typeMap)) _mapsToGenerate.Add (typeMap);
			return GetUniqueName ("wc", typeMap, "WriteCallback_" + typeMap.XmlType);
		}
		
SerializationCodeGenerator