Implemented interface member:
method
ToString
System.IFormattable.ToString(System.String, System.IFormatProvider)
15 references to ToString
mscorlib (2)
system\enum.cs (2)
103return result.ToString("X8", null); 110return result.ToString("X8", null);
System (3)
compmod\system\componentmodel\UInt32Converter.cs (1)
62return ((UInt32)value).ToString("G", formatInfo);
net\System\Net\_NativeSSPI.cs (1)
318GlobalLog.Assert("NativeNTSSPI.DecryptMessage", "Expected qop = 0, returned value = " + qop.ToString("x", CultureInfo.InvariantCulture));
net\System\Net\Logging.cs (1)
299string logHeader = "["+GetThreadId().ToString("d4", CultureInfo.InvariantCulture)+"] " ;
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\SequentialOutput.cs (1)
546Write(((uint)this.byteBuffer[j]).ToString("X2", CultureInfo.InvariantCulture));
System.ServiceModel (1)
System\ServiceModel\Diagnostics\PerformanceCountersBase.cs (1)
96string hash = ((uint)StringUtil.GetNonRandomizedHashCode(str) % 99).ToString("00", CultureInfo.InvariantCulture);
System.ServiceModel.Internals (1)
System\Runtime\Diagnostics\DiagnosticEventProvider.cs (1)
84throw new InvalidOperationException(InternalSR.EtwRegistrationFailed(etwRegistrationStatus.ToString("x", CultureInfo.CurrentCulture)));
System.Web (1)
UI\Page.cs (1)
2267ClientScript.RegisterHiddenField(ViewStateGeneratorFieldID, GetClientStateIdentifier().ToString("X8", CultureInfo.InvariantCulture));
System.Xml (6)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1610error = Res.GetString( Res.Xml_InvalidSurrogateHighChar, ((uint)chars[i]).ToString( "X", CultureInfo.InvariantCulture ) );
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1510error = Res.GetString( Res.Xml_InvalidSurrogateHighChar, ((uint)chars[i]).ToString( "X", CultureInfo.InvariantCulture ) );
System\Xml\XmlConvert.cs (4)
704return value.ToString(null, NumberFormatInfo.InvariantInfo); 1639((uint)hi).ToString( "X", CultureInfo.InvariantCulture ), 1640((uint)low).ToString( "X", CultureInfo.InvariantCulture ) 1654return CreateException( Res.Xml_InvalidSurrogateHighChar, ((uint)hi).ToString( "X", CultureInfo.InvariantCulture ), exceptionType, lineNo, linePos );