14 references to FormatterName
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (6)
286
if (mapping.TypeDesc.
FormatterName
== "Date")
291
else if (mapping.TypeDesc.
FormatterName
== "Time")
395
if (pm.TypeDesc.
FormatterName
== "String")
397
if (pm.TypeDesc.
FormatterName
== "DateTime")
402
MethodInfo format = formatter.GetMethod("To" + pm.TypeDesc.
FormatterName
, new Type[] { typeof(string) });
412
return XmlCustomFormatter.ToDefaultValue(defaultValue, pm.TypeDesc.
FormatterName
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
963
if (pm.TypeDesc.
FormatterName
== "String")
973
string defaultValue = XmlCustomFormatter.FromDefaultValue(value, pm.TypeDesc.
FormatterName
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (1)
1866
XmlCustomFormatter.ToDefaultValue(enumeration.Value, sourceTypeDesc.
FormatterName
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (2)
1691
if (typeDesc == StringTypeDesc || typeDesc.
FormatterName
== "String")
1709
Writer.Write(typeDesc.
FormatterName
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriterILGen.cs (3)
150
if (typeDesc == StringTypeDesc || typeDesc.
FormatterName
== "String")
175
if (typeDesc.
FormatterName
== "XmlQualifiedName")
181
"From" + typeDesc.
FormatterName
,