17 references to Length
System.Private.Xml (17)
src\libraries\Common\src\System\Text\ValueStringBuilder.cs (7)
58/// Does not ensure there is a null char after <see cref="Length"/> 70/// <param name="terminate">Ensures that the builder has a null char after <see cref="Length"/></param> 75EnsureCapacity(Length + 1); 76_chars[Length] = '\0'; 103/// <param name="terminate">Ensures that the builder has a null char after <see cref="Length"/></param> 108EnsureCapacity(Length + 1); 109_chars[Length] = '\0';
System\Xml\Schema\XsdDateTime.cs (2)
539charsWritten = vsb.Length; 540return destination.Length >= vsb.Length;
System\Xml\Schema\XsdDuration.cs (5)
408len = vsb.Length; 433if (vsb[vsb.Length - 1] == 'P') 439if (vsb[vsb.Length - 1] == 'P') 443charsWritten = vsb.Length; 444return destination.Length >= vsb.Length;
System\Xml\Serialization\CodeIdentifier.cs (3)
81for (int i = 0; i < identifier.Length && builder.Length < MaxIdentifierLength; i++) 86if (builder.Length == 0 && !IsValidStart(c)) 93if (builder.Length == 0) return "Item";