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