1 override of ToString
System.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
460public override string ToString(object value, IXmlNamespaceResolver nsResolver) {return (string) ChangeType((object) value, StringType, nsResolver); }
7 references to ToString
System.Xml (7)
System\Xml\Core\XmlEventCache.cs (1)
399WriteString(XmlUntypedConverter.Untyped.ToString(value, this.resolver));
System\Xml\Core\XmlRawWriter.cs (1)
181WriteString(XmlUntypedConverter.Untyped.ToString( value, resolver ) );
System\Xml\Core\XmlWriter.cs (1)
266WriteString(XmlUntypedConverter.Untyped.ToString(value, null));
System\Xml\Schema\XmlAtomicValue.cs (1)
327return valueConverter.ToString(this.objVal, this.nsPrefix);
System\Xml\Schema\XmlValueConverter.cs (1)
3288bldr.Append(this.atomicConverter.ToString(value, nsResolver));
System\Xml\XPath\XPathNavigator.cs (2)
117value = schemaType.ValueConverter.ToString(typedValue, this); 125value = XmlUntypedConverter.Untyped.ToString(typedValue, this);