XmlTransformer.XmlAttributePreservationDict.LookAheadForNewLineString C# (CSharp) Method

LookAheadForNewLineString() private method

private LookAheadForNewLineString ( ) : string
return string
        private string LookAheadForNewLineString()
        {
            foreach (string space in this.leadingSpaces.Values)
            {
                if (this.ContainsNewLine(space))
                    return space;
            }
            return (string)null;
        }