27 references to TextBlockType
System.Private.Xml (27)
System\Xml\Cache\XPathDocumentBuilder.cs (23)
222
case
TextBlockType
.Text:
228
goto case
TextBlockType
.Whitespace;
233
goto case
TextBlockType
.Whitespace;
243
case
TextBlockType
.SignificantWhitespace:
244
case
TextBlockType
.Whitespace:
333
WriteString(text,
TextBlockType
.Text);
370
WriteString(ws,
TextBlockType
.Whitespace);
378
WriteString(text,
TextBlockType
.Text);
383
WriteString(new string(buffer, index, count),
TextBlockType
.Text);
391
WriteString(data,
TextBlockType
.Text);
396
WriteString(new string(buffer, index, count),
TextBlockType
.Text);
402
public void WriteString(string? text,
TextBlockType
textType)
420
WriteString(char.ToString(ch),
TextBlockType
.Text);
428
WriteString(new string([highChar, lowChar]),
TextBlockType
.Text);
771
TextBlockType
textType;
853
private
TextBlockType
_textType;
863
_textType =
TextBlockType
.None;
869
public
TextBlockType
TextType
879
get { return _textType !=
TextBlockType
.None; }
901
public void WriteTextBlock(string? text,
TextBlockType
textType)
908
if (_textType ==
TextBlockType
.None)
935
if (_textType ==
TextBlockType
.None)
938
_textType =
TextBlockType
.None;
System\Xml\XPath\XPathDocument.cs (4)
222
builder.WriteString(reader.Value,
TextBlockType
.Text);
238
builder.WriteString(reader.Value,
TextBlockType
.Text);
243
builder.WriteString(reader.Value,
TextBlockType
.SignificantWhitespace);
258
builder.WriteString(reader.Value,
TextBlockType
.Whitespace);