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

WriteBoundElementContentTo() private static method

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

                dp.MoveToParent();
            }
        }