System.Xml.XmlBoundElement.WriteContentTo C# (CSharp) Méthode

WriteContentTo() public méthode

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