1 override of ToString
System.Private.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
381public override string ToString(object value, IXmlNamespaceResolver? nsResolver) { return (string)ChangeType((object)value, StringType, nsResolver); }
7 references to ToString
System.Private.Xml (7)
System\Xml\Core\XmlEventCache.cs (1)
429WriteString(XmlUntypedConverter.Untyped.ToString(value, this._resolver));
System\Xml\Core\XmlRawWriter.cs (1)
187WriteString(XmlUntypedConverter.Untyped.ToString(value, _resolver));
System\Xml\Core\XmlWriter.cs (1)
247WriteString(XmlUntypedConverter.Untyped.ToString(value, null));
System\Xml\Schema\XmlAtomicValue.cs (1)
395return valueConverter.ToString(_objVal, _nsPrefix);
System\Xml\Schema\XmlValueConverter.cs (1)
3114bldr.Append(this.atomicConverter!.ToString(value, nsResolver));
System\Xml\XPath\XPathNavigator.cs (2)
127value = schemaType.ValueConverter.ToString(typedValue, this); 132value ??= XmlUntypedConverter.Untyped.ToString(typedValue, this);