System.Xml.XmlSignificantWhitespace.CloneNode C# (CSharp) Method

CloneNode() public method

public CloneNode ( bool deep ) : XmlNode
deep bool
return XmlNode
        public override XmlNode CloneNode(bool deep) {
            Debug.Assert( OwnerDocument != null );
            return OwnerDocument.CreateSignificantWhitespace( Data );
        }