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