9 references to indents
Microsoft.Web.XmlTransform (9)
XmlFormatter.cs (9)
66
Debug.Assert(
indents
.Count > 0, "Expected at least one previous indent");
67
return
indents
.Last.Value;
325
indents
.AddLast(new LinkedListNode<string>(CurrentIndent));
340
if (
indents
.Count > 0) {
341
currentIndent =
indents
.Last.Value;
342
indents
.RemoveLast();
412
Debug.Assert(
indents
.Count > 0, "Expected at least one previous indent");
413
if (
indents
.Count <= 0) {
417
LinkedListNode<string> currentIndentNode =
indents
.Last;