27 references to TextBlockType
System.Xml (27)
System\Xml\Cache\XPathDocumentBuilder.cs (23)
202case TextBlockType.Text: 207goto case TextBlockType.Whitespace; 212goto case TextBlockType.Whitespace; 222case TextBlockType.SignificantWhitespace: 223case TextBlockType.Whitespace: 300WriteString(text, TextBlockType.Text); 333WriteString(ws, TextBlockType.Whitespace); 340WriteString(text, TextBlockType.Text); 344WriteString(new string(buffer, index, count), TextBlockType.Text); 351WriteString(data, TextBlockType.Text); 355WriteString(new string(buffer, index, count), TextBlockType.Text); 361public void WriteString(string text, TextBlockType textType) { 377WriteString(new string(chars), TextBlockType.Text); 385WriteString(new string(chars), TextBlockType.Text); 689TextBlockType textType; 763private TextBlockType textType; 772this.textType = TextBlockType.None; 778public TextBlockType TextType { 786get { return this.textType != TextBlockType.None; } 806public void WriteTextBlock(string text, TextBlockType textType) { 811if (this.textType == TextBlockType.None) { 834if (this.textType == TextBlockType.None) 837this.textType = TextBlockType.None;
System\Xml\XPath\XPathDocument.cs (4)
205builder.WriteString(reader.Value, TextBlockType.Text); 221builder.WriteString(reader.Value, TextBlockType.Text); 226builder.WriteString(reader.Value, TextBlockType.SignificantWhitespace); 241builder.WriteString(reader.Value, TextBlockType.Whitespace);