6 writes to Text
System.Web.Mobile (6)
UI\MobileControls\LiteralTextParser.cs (6)
76Text = text; 83Text = String.Empty; 577_currentTag.Text += text; 609_lastQueuedElement.Text += element.Text; 644_currentTag.Text = String.Empty; 666_lastQueuedElement.Text = " ";
11 references to Text
System.Web.Mobile (11)
UI\MobileControls\CompileLiteralTextParser.cs (3)
79if (element.Text == null || element.Text.Length != 0) 81subBuilder.AppendLiteralString(element.Text);
UI\MobileControls\LiteralTextParser.cs (6)
98return IsText && !LiteralTextParser.IsValidText(Text); 355_lastQueuedElement.Text.Length == 0) 609_lastQueuedElement.Text += element.Text; 642ProcessTagInnerText(_currentTag.Text); 661if (_lastQueuedElement.Text.Length == 0 || _lastQueuedElement.Text[0] != ' ')
UI\MobileControls\TextView.cs (2)
433String text = element.Text != null ? element.Text : String.Empty;