2 writes to _currentTag
System.Web.Mobile (2)
UI\MobileControls\LiteralTextParser.cs (2)
323
_currentTag
= null;
391
_currentTag
= new LiteralElement(tagType, attribs);
10 references to _currentTag
System.Web.Mobile (10)
UI\MobileControls\LiteralTextParser.cs (10)
316
if (
_currentTag
!= null)
320
if (
_currentTag
.Type == tagType && isClosingTag)
322
ProcessElementInternal(
_currentTag
);
407
return
_currentTag
!= null;
574
if (
_currentTag
!= null)
577
_currentTag
.Text += text;
633
if (
_currentTag
!= null)
640
if (!
_currentTag
.IsEmptyText)
642
ProcessTagInnerText(
_currentTag
.Text);
644
_currentTag
.Text = String.Empty;