7 writes to current
System.Transactions (7)
System\Transactions\Trace\TraceXPathNavigator.cs (7)
134
this.
current
= this.root;
139
this.
current
= node;
186
this.
current
= this.current.parent;
255
this.
current
= this.current.childNodes[0];
301
this.
current
= temp;
339
this.
current
= this.current.parent;
367
this.
current
= this.root;
39 references to current
System.Transactions (39)
System\Transactions\Trace\TraceXPathNavigator.cs (39)
124
ElementNode node = new ElementNode(name, prefix, xmlns, this.
current
);
131
if (this.
current
== null)
138
this.
current
.childNodes.Add(node);
150
if (this.
current
== null)
154
else if (this.
current
.text != null)
160
this.
current
.text = new TextNode(value);
170
if (this.
current
== null)
175
this.
current
.attributes.Add(node);
186
this.current = this.
current
.parent;
187
if (this.
current
== null)
209
if (this.
current
!= null)
211
retval = this.
current
.text != null || this.
current
.childNodes.Count > 0;
234
if (this.
current
== null)
238
bool retval = this.
current
.MoveToFirstAttribute();
248
if (this.
current
== null)
253
if (this.
current
.childNodes.Count > 0)
255
this.current = this.
current
.childNodes[0];
259
else if (this.
current
.childNodes.Count == 0 && this.
current
.text != null)
262
this.
current
.movedToText = true;
280
if (this.
current
== null)
287
ElementNode parent = this.
current
.parent;
310
if (this.
current
== null)
314
bool retval = this.
current
.MoveToNextAttribute();
329
if (this.
current
== null)
337
if (this.
current
.parent != null)
339
this.current = this.
current
.parent;
376
if (this.
current
== null)
384
retval = this.
current
.name;
387
retval = this.
current
.CurrentAttribute.name;
413
if (this.
current
== null)
421
retval = this.
current
.prefix;
424
retval = this.
current
.CurrentAttribute.prefix;
427
retval = this.
current
.prefix;
438
if (this.
current
== null)
446
retval = this.
current
.text.nodeValue;
449
retval = this.
current
.CurrentAttribute.nodeValue;
452
retval = this.
current
.xmlns;