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

WriteBoundElementContentTo() private static méthode

private static WriteBoundElementContentTo ( DataPointer dp, XmlWriter w ) : void
dp DataPointer
w XmlWriter
Résultat void
        private static void WriteBoundElementContentTo(DataPointer dp, XmlWriter w)
        {
            if (!dp.IsEmptyElement && dp.MoveToFirstChild())
            {
                do
                {
                    WriteTo(dp, w);
                }
                while (dp.MoveToNextSibling());

                dp.MoveToParent();
            }
        }