2 writes to charEntity
System.Xml (2)
System\Xml\Core\CharEntityEncoderFallback.cs (2)
91
charEntity
= string.Format( CultureInfo.InvariantCulture, "&#x{0:X};", new object[] { (int)charUnknown } );
115
charEntity
= string.Format( CultureInfo.InvariantCulture, "&#x{0:X};", new object[] { SurrogateCharToUtf32( charUnknownHigh, charUnknownLow ) } );
5 references to charEntity
System.Xml (5)
System\Xml\Core\CharEntityEncoderFallback.cs (5)
131
if (charEntityIndex ==
charEntity
.Length)
139
Debug.Assert( charEntityIndex <
charEntity
.Length );
140
char ch =
charEntity
[charEntityIndex++];
151
Debug.Assert(charEntityIndex <=
charEntity
.Length);
170
return
charEntity
.Length - charEntityIndex;