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

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

private XmlDataLoader ( DataSet dataset, bool IsXdr, XmlElement topNode, bool ignoreSchema ) : System.Collections
dataset DataSet
IsXdr bool
topNode System.Xml.XmlElement
ignoreSchema bool
Результат System.Collections
        internal XmlDataLoader(DataSet dataset, bool IsXdr, XmlElement topNode, bool ignoreSchema)
        {
            // Initialization
            _dataSet = dataset;
            _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, bool ignoreSchema ) : System.Collections
XmlDataLoader::XmlDataLoader ( DataTable datatable, bool IsXdr, XmlElement topNode, bool ignoreSchema ) : System.Collections
XmlDataLoader::XmlDataLoader ( DataTable datatable, bool IsXdr, bool ignoreSchema ) : System.Collections