System.Xml.XmlBoundElement.WriteContentTo C# (CSharp) Method

WriteContentTo() public method

public WriteContentTo ( XmlWriter w ) : void
w XmlWriter
return void
        public override void WriteContentTo(XmlWriter w)
        {
            DataPointer dp = new DataPointer((XmlDataDocument)OwnerDocument, this);
            try
            {
                dp.AddPointer();
                WriteBoundElementContentTo(dp, w);
            }
            finally
            {
                dp.SetNoLongerUse();
            }
        }