XmlTransformer.XmlAttributePreservationDict.ComputeOneAttributePerLine C# (CSharp) Method

ComputeOneAttributePerLine() private method

private ComputeOneAttributePerLine ( ) : bool
return bool
        private bool ComputeOneAttributePerLine()
        {
            if (this.leadingSpaces.Count <= 1)
                return false;
            bool flag = true;
            foreach (string key in this.orderedAttributes)
            {
                if (flag)
                    flag = false;
                else if (this.leadingSpaces.ContainsKey(key) && !this.ContainsNewLine(this.leadingSpaces[key]))
                    return false;
            }
            return true;
        }