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>
75
EnsureCapacity(
Length
+ 1);
76
_chars[
Length
] = '\0';
103
/// <param name="terminate">Ensures that the builder has a null char after <see cref="
Length
"/></param>
108
EnsureCapacity(
Length
+ 1);
109
_chars[
Length
] = '\0';
System\Xml\Schema\XsdDateTime.cs (2)
539
charsWritten = vsb.
Length
;
540
return destination.Length >= vsb.
Length
;
System\Xml\Schema\XsdDuration.cs (5)
408
len = vsb.
Length
;
433
if (vsb[vsb.
Length
- 1] == 'P')
439
if (vsb[vsb.
Length
- 1] == 'P')
443
charsWritten = vsb.
Length
;
444
return destination.Length >= vsb.
Length
;
System\Xml\Serialization\CodeIdentifier.cs (3)
81
for (int i = 0; i < identifier.Length && builder.
Length
< MaxIdentifierLength; i++)
86
if (builder.
Length
== 0 && !IsValidStart(c))
93
if (builder.
Length
== 0) return "Item";