XmlTransformer.XmlAttributePreservationDict.ComputeAttributeNewLineString C# (CSharp) Method

ComputeAttributeNewLineString() private method

private ComputeAttributeNewLineString ( XmlFormatter formatter ) : string
formatter XmlFormatter
return string
        private string ComputeAttributeNewLineString(XmlFormatter formatter)
        {
            string str = this.LookAheadForNewLineString();
            if (str != null)
                return str;
            if (formatter != null)
                return formatter.CurrentAttributeIndent;
            else
                return (string)null;
        }