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

WriteTo() public méthode

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

Same methods

XmlBoundElement::WriteTo ( DataPointer dp, XmlWriter w ) : void