27 references to TextBlockType
dotnet-svcutil-lib (27)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentBuilder.cs (23)
217case TextBlockType.Text: 223goto case TextBlockType.Whitespace; 228goto case TextBlockType.Whitespace; 238case TextBlockType.SignificantWhitespace: 239case TextBlockType.Whitespace: 324WriteString(text, TextBlockType.Text); 361WriteString(ws, TextBlockType.Whitespace); 369WriteString(text, TextBlockType.Text); 374WriteString(new string(buffer, index, count), TextBlockType.Text); 382WriteString(data, TextBlockType.Text); 387WriteString(new string(buffer, index, count), TextBlockType.Text); 393public void WriteString(string text, TextBlockType textType) 412WriteString(new string(chars), TextBlockType.Text); 421WriteString(new string(chars), TextBlockType.Text); 757TextBlockType textType; 839private TextBlockType _textType; 849_textType = TextBlockType.None; 855public TextBlockType TextType 865get { return _textType != TextBlockType.None; } 887public void WriteTextBlock(string text, TextBlockType textType) 894if (_textType == TextBlockType.None) 921if (_textType == TextBlockType.None) 924_textType = TextBlockType.None;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (4)
233builder.WriteString(reader.Value, TextBlockType.Text); 249builder.WriteString(reader.Value, TextBlockType.Text); 254builder.WriteString(reader.Value, TextBlockType.SignificantWhitespace); 269builder.WriteString(reader.Value, TextBlockType.Whitespace);