System.Data.XmlDataLoader.XmlDataLoader C# (CSharp) Метод

XmlDataLoader() приватный Метод

private XmlDataLoader ( DataTable datatable, bool IsXdr, XmlElement topNode, bool ignoreSchema ) : System.Collections
datatable DataTable
IsXdr bool
topNode System.Xml.XmlElement
ignoreSchema bool
Результат System.Collections
        internal XmlDataLoader(DataTable datatable, bool IsXdr, XmlElement topNode, bool ignoreSchema)
        {
            // Initialization
            _dataSet = null;
            _dataTable = datatable;
            _isTableLevel = true;
            _nodeToRowMap = new Hashtable();
            _fIsXdr = IsXdr;

            // Allocate the stack and create the mappings

            _childRowsStack = new Stack(50);
            _topMostNode = topNode;
            _ignoreSchema = ignoreSchema;
        }

Same methods

XmlDataLoader::XmlDataLoader ( DataSet dataset, bool IsXdr, XmlElement topNode, bool ignoreSchema ) : System.Collections
XmlDataLoader::XmlDataLoader ( DataSet dataset, bool IsXdr, bool ignoreSchema ) : System.Collections
XmlDataLoader::XmlDataLoader ( DataTable datatable, bool IsXdr, bool ignoreSchema ) : System.Collections