16 instantiations of DataSet
System.Data (10)
fx\src\data\System\Data\Common\HandlerBase.cs (1)
62parentConfig = new DataSet(DbProviderFactoriesConfigurationHandler.sectionName);
fx\src\data\System\Data\DataSet.cs (1)
3661DataSet ds = new DataSet();
fx\src\data\System\Data\DataTable.cs (6)
252DataSet ds = new DataSet("tmpDataSet"); 296DataSet ds = new DataSet(); 4846ds = new DataSet(); 4991ds = new DataSet(); 5725DataSet ds = new DataSet(); 5798DataSet dataset = new DataSet(ds.DataSetName);
fx\src\data\System\Data\ProviderBase\DbMetaDataFactory.cs (1)
478_metaDataCollectionsDataSet = new DataSet();
fx\src\data\System\NewXml\XmlDataDocument.cs (1)
2317AttachDataSet( new DataSet() );
System.Data.Linq (2)
SqlClient\Reader\ObjectReaderCompiler.cs (2)
2527DataSet ds = new DataSet(); 2814DataSet ds = new DataSet();
System.Web (2)
UI\TraceContext.cs (1)
651DataSet tempset = new DataSet();
UI\WebControls\SqlDataSourceView.cs (1)
1025DataSet dataSet = new DataSet();
System.Web.DataVisualization (1)
Common\General\DataManipulator.cs (1)
934 DataSet dataSet = new DataSet();
System.Windows.Forms.DataVisualization (1)
Common\General\DataManipulator.cs (1)
934 DataSet dataSet = new DataSet();
270 references to DataSet
System.Data (221)
fx\src\data\System\Data\CodeGen\datacache.cs (9)
32public static void Generate(DataSet dataSet, CodeNamespace codeNamespace, ICodeGenerator codeGen) { 73internal CodeTypeDeclaration GenerateCode(DataSet dataSet, CodeNamespace codeNamespace, ICodeGenerator codeGen) { 1010private CodeTypeDeclaration CreateTypedDataSet(DataSet dataSet) { 1013dataSetClass.BaseTypes.Add(typeof(DataSet)); 1066schemaBody.Add(VariableDecl(typeof(DataSet),"ds",New(typeof(DataSet),new CodeExpression[] {}))); 1110CodeMemberMethod clone = MethodDecl(typeof(DataSet), "Clone", MemberAttributes.Public | MemberAttributes.Override); { 1224readXmlSerializable.Statements.Add(VariableDecl(typeof(DataSet),"ds",New(typeof(DataSet),new CodeExpression[] {})));
fx\src\data\System\Data\Common\DataAdapter.cs (10)
323virtual public DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType) { // V1.0.3300 327virtual protected DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType, string srcTable, IDataReader dataReader) { // V1.2.3300 375internal object FillSchemaFromReader(DataSet dataset, DataTable datatable, SchemaType schemaType, string srcTable, IDataReader dataReader) { 414virtual public int Fill(DataSet dataSet) { // V1.0.3300 418virtual protected int Fill(DataSet dataSet, string srcTable, IDataReader dataReader, int startRecord, int maxRecords) { // V1.2.3300, DbDataAdapter V1.0.3300 471DataSet commonDataSet = dataTables[0].DataSet; 531internal int FillFromReader(DataSet dataset, DataTable datatable, string srcTable, DataReaderContainer dataReader, int startRecord, int maxRecords, DataColumn parentChapterColumn, object parentChapterValue) { 652private SchemaMapping FillMappingInternal(DataSet dataset, DataTable datatable, string srcTable, DataReaderContainer dataReader, int schemaCount, DataColumn parentChapterColumn, object parentChapterValue) { 661private SchemaMapping FillMapping(DataSet dataset, DataTable datatable, string srcTable, DataReaderContainer dataReader, int schemaCount, DataColumn parentChapterColumn, object parentChapterValue) { 743virtual public int Update(DataSet dataSet) { // V1.0.3300
fx\src\data\System\Data\Common\DataTableMapping.cs (1)
132public DataTable GetDataTableBySchemaAction(DataSet dataSet, MissingSchemaAction schemaAction) {
fx\src\data\System\Data\Common\DbDataAdapter.cs (11)
269override public DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType) { // V1.0.3300 285public DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType, string srcTable) { // V1.0.3300 298virtual protected DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType, IDbCommand command, string srcTable, CommandBehavior behavior) { // V1.0.3300 344private object FillSchemaInternal(DataSet dataset, DataTable datatable, SchemaType schemaType, IDbCommand command, string srcTable, CommandBehavior behavior) { 375override public int Fill(DataSet dataSet) { // V1.0.3300 389public int Fill(DataSet dataSet, string srcTable) { // V1.0.3300 403public int Fill(DataSet dataSet, int startRecord, int maxRecords, string srcTable) { // V1.0.3300 417virtual protected int Fill(DataSet dataSet, int startRecord, int maxRecords, string srcTable, IDbCommand command, CommandBehavior behavior) { // V1.0.3300 514private int FillInternal(DataSet dataset, DataTable[] datatables, int startRecord, int maxRecords, string srcTable, IDbCommand command, CommandBehavior behavior) { 704override public int Update(DataSet dataSet) { // V1.0.3300 766public int Update(DataSet dataSet, string srcTable) { // V1.0.3300
fx\src\data\System\Data\Common\DbProviderFactories.cs (2)
236DataSet configTable = PrivilegedConfigurationManager.GetSection(DbProviderFactoriesConfigurationHandler.sectionName) as DataSet;
fx\src\data\System\Data\Common\DbProviderFactoriesConfigurationHandler.cs (3)
151config = HandlerBase.CloneParent(parent as DataSet, false); 166HandleProviders(config as DataSet, configContext, child, sectionGroup); 177private static void HandleProviders(DataSet config, object configContext, XmlNode section, string sectionName) {
fx\src\data\System\Data\Common\HandlerBase.cs (2)
60static internal DataSet CloneParent(DataSet parentConfig, bool insenstive) {
fx\src\data\System\Data\Constraint.cs (7)
27private DataSet dataSet = null; 123internal abstract Constraint Clone(DataSet destination); 124internal abstract Constraint Clone(DataSet destination, bool ignoreNSforTableLookup); 152/// <para>Gets the <see cref='System.Data.DataSet'/> to which this constraint belongs.</para> 155protected virtual DataSet _DataSet { 162/// <para>Sets the constraint's <see cref='System.Data.DataSet'/>.</para> 164protected internal void SetDataSet(DataSet dataSet) {
fx\src\data\System\Data\ConstraintEnumerator.cs (4)
25public ConstraintEnumerator(DataSet dataSet) { 78public ForeignKeyConstraintEnumerator(DataSet dataSet) : base(dataSet) { 97public ChildForeignKeyConstraintEnumerator(DataSet dataSet, DataTable inTable) : base(dataSet) { 110public ParentForeignKeyConstraintEnumerator(DataSet dataSet, DataTable inTable) : base(dataSet) {
fx\src\data\System\Data\DataRelation.cs (6)
49private DataSet dataSet = null; 209/// Gets the <see cref='System.Data.DataSet'/> to which the relations' collection belongs to. 213public virtual DataSet DataSet { 293internal void SetDataSet(DataSet dataSet) { 653/// belong to a <see cref='System.Data.DataSet'/>.</para> 695internal DataRelation Clone(DataSet destination) {
fx\src\data\System\Data\DataRelationCollection.cs (7)
192DataSet dataSet = GetDataSet(); 331protected abstract DataSet GetDataSet(); 459DataSet dataSet = GetDataSet(); 513protected override DataSet GetDataSet() { 624private readonly DataSet dataSet; 628internal DataSetRelationCollection(DataSet dataSet) { 663protected override DataSet GetDataSet() {
fx\src\data\System\Data\DataSet.cs (59)
99/// <para>Initializes a new instance of the <see cref='System.Data.DataSet'/> class.</para> 111/// <para>Initializes a new instance of a <see cref='System.Data.DataSet'/> 560/// <para>Gets a custom view of the data contained by the <see cref='System.Data.DataSet'/> , one 638/// sets the name of this <see cref='System.Data.DataSet'/> .</para> 747/// of the rows in any of the tables of this <see cref='System.Data.DataSet'/> . 929/// Resets the <see cref='System.Data.DataSet.Relations'/> property to its default state. 938/// <para>Gets the collection of tables contained in the <see cref='System.Data.DataSet'/>.</para> 953/// Indicates whether <see cref='System.Data.DataSet.Tables'/> property should be persisted. 962/// Resets the <see cref='System.Data.DataSet.Tables'/> property to its default state. 981/// Commits all the changes made to this <see cref='System.Data.DataSet'/> since it was loaded or the last 982/// time <see cref='System.Data.DataSet.AcceptChanges'/> was called. 1076/// <para>Clears the <see cref='System.Data.DataSet'/> of any data by removing all rows in all tables.</para> 1096/// <para>Clones the structure of the <see cref='System.Data.DataSet'/>, including all <see cref='System.Data.DataTable'/> schemas, relations, and 1101public virtual DataSet Clone() { 1105DataSet ds = (DataSet)Activator.CreateInstance(this.GetType(), true); 1179/// <para>Copies both the structure and data for this <see cref='System.Data.DataSet'/>.</para> 1181public DataSet Copy() 1186DataSet dsNew = Clone(); 1223/// <para>Returns a copy of the <see cref='System.Data.DataSet'/> that contains all changes made to 1224/// it since it was loaded or <see cref='System.Data.DataSet.AcceptChanges'/> 1227public DataSet GetChanges() 1254public DataSet GetChanges(DataRowState rowStates) 1259DataSet dsNew = null; 1435/// <para>Gets a value indicating whether the <see cref='System.Data.DataSet'/> has changes, including new, 1444/// <para>Gets a value indicating whether the <see cref='System.Data.DataSet'/> has changes, including new, 1477/// <para>Infer the XML schema from the specified <see cref='System.IO.TextReader'/> into the <see cref='System.Data.DataSet'/>.</para> 1505/// <para>Infer the XML schema from the specified <see cref='System.IO.TextReader'/> into the <see cref='System.Data.DataSet'/>.</para> 1516/// <para>Infer the XML schema from the specified <see cref='System.IO.TextReader'/> into the <see cref='System.Data.DataSet'/>.</para> 1527/// <para>Infer the XML schema from the specified file into the <see cref='System.Data.DataSet'/>.</para> 1543/// <para>Reads the XML schema from the specified <see cref='T:System.Xml.XMLReader'/> into the <see cref='System.Data.DataSet'/> 1712/// <see cref='System.Data.DataSet'/>.</para> 1723/// <para>Reads the XML schema from the specified <see cref='System.IO.TextReader'/> into the <see cref='System.Data.DataSet'/>.</para> 1734/// <para>Reads the XML schema from the specified file into the <see cref='System.Data.DataSet'/>.</para> 1750/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to using the specified <see cref='Stream'/> object.</summary> 1757/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to using the specified <see cref='Stream'/> object.</summary> 1766/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to a file.</summary> 1775/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to a file.</summary> 1786/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to a <see cref='TextWriter'/> object.</summary> 1793/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to a <see cref='TextWriter'/> object.</summary> 1802/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to an <see cref='XmlWriter'/> object.</summary> 1809/// <summary>Writes the <see cref='DataSet'/> structure as an XML schema to an <see cref='XmlWriter'/> object.</summary> 2216DataSet newDs; 2708/// Merges this <see cref='System.Data.DataSet'/> into a specified <see cref='System.Data.DataSet'/>. 2711public void Merge(DataSet dataSet) 2725/// Merges this <see cref='System.Data.DataSet'/> into a specified <see cref='System.Data.DataSet'/> preserving changes according to 2729public void Merge(DataSet dataSet, bool preserveChanges) 2743/// Merges this <see cref='System.Data.DataSet'/> into a specified <see cref='System.Data.DataSet'/> preserving changes according to 2748public void Merge(DataSet dataSet, bool preserveChanges, MissingSchemaAction missingSchemaAction) { 3349if (GetType() == typeof(DataSet)) { 3514mainNamespace.Imports.Add(new CodeNamespaceImport(typeof(DataSet).Namespace)); 3570string typeName = isDataSet ? typeof(DataSet).FullName : typeof(DataTable).FullName; 3572mainNamespace.Imports.Add(new CodeNamespaceImport(typeof(DataSet).Namespace)); 3601string typeName = typeof(DataSet).FullName; 3603mainNamespace.Imports.Add(new CodeNamespaceImport(typeof(DataSet).Namespace)); 3661DataSet ds = new DataSet();
fx\src\data\System\Data\DataTable.cs (16)
40private DataSet dataSet; 252DataSet ds = new DataSet("tmpDataSet"); 296DataSet ds = new DataSet(); 1117/// <para>Gets the <see cref='System.Data.DataSet'/> that this table belongs to.</para> 1120public DataSet DataSet { 1129internal void SetDataSet(DataSet dataSet) { 1289/// the tables of the <see cref='System.Data.DataSet'/> to which the table belongs.</para> 2148internal DataTable Clone(DataSet cloneDS) { 2173private DataTable CloneHierarchy (DataTable sourceTable, DataSet ds, Hashtable visitedMap) { 2206private DataTable CloneTo(DataTable clone, DataSet cloneDS, bool skipExpressionColumns) { 4843DataSet ds = null; 4986DataSet ds = null; 5725DataSet ds = new DataSet(); 5798DataSet dataset = new DataSet(ds.DataSetName); 6078DataSet _targetDS; 6080internal void Prepare(DataSet ds)
fx\src\data\System\Data\DataTableCollection.cs (3)
19/// Represents the collection of tables for the <see cref='System.Data.DataSet'/>. 29private readonly DataSet dataSet = null; 45internal DataTableCollection(DataSet dataSet) {
fx\src\data\System\Data\DataView.cs (2)
1222DataSet dataSet = table.DataSet; 1240DataSet dataSet = table.DataSet;
fx\src\data\System\Data\DataViewManager.cs (6)
23private DataSet dataSet; 34public DataViewManager(DataSet dataSet) : this(dataSet, false) {} 36internal DataViewManager(DataSet dataSet, bool locked) { 52public DataSet DataSet { 305DataSet dataSet = DataSet; 322DataSet dataSet = DataSet;
fx\src\data\System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
129DataSet dataSet = dataViewManager.DataSet;
fx\src\data\System\Data\DataViewSettingCollection.cs (5)
54DataSet ds = dataViewManager.DataSet; 63DataSet ds = dataViewManager.DataSet; 116DataSet ds = dataViewManager.DataSet; 158DataSet ds = dvm.DataSet; 164tableEnumerator = DataSet.zeroTables.GetEnumerator();
fx\src\data\System\Data\ForeignKeyConstraint.cs (2)
610internal override Constraint Clone(DataSet destination) { 614internal override Constraint Clone(DataSet destination, bool ignorNSforTableLookup) {
fx\src\data\System\Data\IDataAdapter.cs (3)
28DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType); 30int Fill(DataSet dataSet); 34int Update(DataSet dataSet);
fx\src\data\System\Data\Merger.cs (4)
20private DataSet dataSet = null; 27internal Merger(DataSet dataSet, bool preserveChanges, MissingSchemaAction missingSchemaAction) { 50internal void MergeDataSet(DataSet source) { 386private void MergeConstraints(DataSet source) {
fx\src\data\System\Data\OleDb\OleDbDataAdapter.cs (5)
189public int Fill(DataSet dataSet, object ADODBRecordSet, string srcTable) { 220Debug.Assert(!(adodb is DataSet), "call Fill( (DataSet) value)"); 271if (data is DataSet) { 376return base.Fill((DataSet) data, srcTable, dataReader, 0, 0); 419return base.Fill((DataSet) data, srcTable, dataReader, 0, 0);
fx\src\data\System\Data\PropertyCollection.cs (1)
17/// <see cref='System.Data.DataSet'/>,
fx\src\data\System\Data\ProviderBase\DbMetaDataFactory.cs (2)
23private DataSet _metaDataCollectionsDataSet; 58protected DataSet CollectionDataSet {
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (2)
39private readonly DataSet _dataSet; // the current dataset, may be null if we are only filling a DataTable 63internal SchemaMapping(DataAdapter adapter, DataSet dataset, DataTable datatable, DataReaderContainer dataReader, bool keyInfo,
fx\src\data\System\Data\UniqueConstraint.cs (2)
253internal override Constraint Clone(DataSet destination) { 257internal override Constraint Clone(DataSet destination, bool ignorNSforTableLookup) {
fx\src\data\System\Data\XDRSchema.cs (5)
23internal DataSet _ds; 27internal XDRSchema(DataSet ds, bool fInline) { 34internal void LoadSchema(XmlElement schemaRoot, DataSet ds) { 532internal DataTable InstantiateTable(DataSet dataSet, XmlElement node, XmlElement typeNode) { 617internal DataTable InstantiateSimpleTable(DataSet dataSet, XmlElement node) {
fx\src\data\System\Data\XmlDataLoader.cs (3)
20DataSet dataSet; 37internal XmlDataLoader( DataSet dataset, bool IsXdr, bool ignoreSchema) { 45internal XmlDataLoader( DataSet dataset, bool IsXdr, XmlElement topNode, bool ignoreSchema) {
fx\src\data\System\Data\XMLDiffLoader.cs (5)
26DataSet dataSet = null; 29internal void LoadDiffGram(DataSet ds, XmlReader dataTextReader) { 74internal void ProcessDiffs(DataSet ds, XmlReader ssync) { 174internal void ProcessErrors(DataSet ds, XmlReader ssync) { 272private int ReadOldRowData(DataSet ds, ref DataTable table, ref int pos, XmlReader row) {
fx\src\data\System\Data\xmlsaver.cs (17)
39DataSet _ds; 109if (!((instance is DataSet) || (instance is DataTable) || (instance is DataColumn) || (instance is DataRelation))) { 293private void GenerateConstraintNames(DataSet ds) { 304private bool HaveExtendedProperties(DataSet ds) { 363internal void SetupAutoGenerated(DataSet ds){ 467internal void SchemaTree(XmlDocument xd, XmlWriter xmlWriter, DataSet ds, DataTable dt, bool writeHierarchy) { 865internal XmlElement FillDataSetElement(XmlDocument xd, DataSet ds, DataTable dt) { 866DataSet dataSet = (ds != null) ? ds : dt.DataSet; 934internal void Save(DataSet ds, XmlWriter xw) { 948internal void Save(DataSet ds, DataTable dt, XmlWriter xw) { 952internal void Save(DataSet ds, DataTable dt, XmlWriter xw, bool writeHierarchy) { 956internal void Save(DataSet ds, DataTable dt, XmlWriter xw, bool writeHierarchy, Converter<Type, string> multipleTargetConverter) 1962internal DataSet _ds; 1972internal NewDiffgramGen(DataSet ds) { 2314DataSet _ds = null; 2327internal XmlDataTreeWriter(DataSet ds) { 2335internal XmlDataTreeWriter(DataSet ds, DataTable dt) { // need to modify this also
fx\src\data\System\Data\XMLSchema.cs (2)
126DataSet _ds = null; 565public void LoadSchema(XmlSchemaSet schemaSet , DataSet ds) { //Element schemaRoot, DataSet ds) {
fx\src\data\System\Data\XmlToDatasetMap.cs (4)
95public XmlToDatasetMap(DataSet dataSet, XmlNameTable nameTable) { 103public XmlToDatasetMap(XmlNameTable nameTable, DataSet dataSet) { 238private void BuildIdentityMap(DataSet dataSet, XmlNameTable nameTable) { 257private void BuildIdentityMap(XmlNameTable nameTable, DataSet dataSet) {
fx\src\data\System\NewXml\DataSetMappper.cs (2)
29DataSet dataSet; // The dataset this mapper is related to 39internal void SetupMapping( XmlDataDocument xd, DataSet ds ) {
fx\src\data\System\NewXml\XmlDataDocument.cs (8)
28DataSet dataSet; 96private void AttachDataSet( DataSet ds ) { 365public DataSet DataSet { 1110private void LoadTreeFromDataSet( DataSet ds ) { 2327public XmlDataDocument( DataSet dataset ): base(new XmlDataImplementation()) { 2352private void Init( DataSet ds ) { 2740private DataTable[] OrderTables(DataSet ds) { 2818private bool TablesAreOrdered(DataSet ds) {
System.Data.Linq (2)
SqlClient\Reader\ObjectReaderCompiler.cs (2)
2527DataSet ds = new DataSet(); 2814DataSet ds = new DataSet();
System.Web (17)
Handlers\TraceHandler.cs (4)
142ShowDetails((DataSet) datasets[index]); 159protected void ShowDetails(DataSet data) { 282DataSet current = (DataSet)data[i];
UI\TraceContext.cs (8)
47private static DataSet _masterRequest; 55private DataSet _requestData; 466internal DataSet GetData() { 651DataSet tempset = new DataSet(); 747private DataRow NewRow(DataSet ds, string table) { 751private void AddRow(DataSet ds, string table, DataRow row) { 763DataSet requestData = _masterRequest.Clone(); 843private void AddCollectionToRequestData(DataSet requestData, string traceCollectionTitle, NameValueCollection collection) {
UI\WebControls\FilteredDataSetHelper.cs (2)
57DataSet dataSet = dataObject as DataSet;
UI\WebControls\SqlDataSourceView.cs (3)
912DataSet dataSet = _owner.LoadDataFromCache(0, -1) as DataSet; 1025DataSet dataSet = new DataSet();
System.Web.DataVisualization (15)
Common\DataManager\DataPoint.cs (2)
1140DataSet dataSet = dataSource as DataSet;
Common\General\Chart.cs (8)
402 dataSource is DataSet || 478else if (dataSource is DataSet && ((DataSet)dataSource).Tables.Count > 0) 480dataTable = ((DataSet)dataSource).Tables[0]; 640if (dataSource is DataSet && ((DataSet)dataSource).Tables.Count > 0) 642dataSource = ((DataSet)dataSource).DefaultViewManager.CreateDataView(((DataSet)dataSource).Tables[0]);
Common\General\DataManipulator.cs (5)
929 internal DataSet ExportSeriesValues(Series[] series) 934 DataSet dataSet = new DataSet(); 1096 public DataSet ExportSeriesValues() 1106 public DataSet ExportSeriesValues(string seriesNames) 1120 public DataSet ExportSeriesValues(Series series)
System.Windows.Forms.DataVisualization (15)
Common\DataManager\DataPoint.cs (2)
1140DataSet dataSet = dataSource as DataSet;
Common\General\Chart.cs (8)
402 dataSource is DataSet || 478else if (dataSource is DataSet && ((DataSet)dataSource).Tables.Count > 0) 480dataTable = ((DataSet)dataSource).Tables[0]; 640if (dataSource is DataSet && ((DataSet)dataSource).Tables.Count > 0) 642dataSource = ((DataSet)dataSource).DefaultViewManager.CreateDataView(((DataSet)dataSource).Tables[0]);
Common\General\DataManipulator.cs (5)
929 internal DataSet ExportSeriesValues(Series[] series) 934 DataSet dataSet = new DataSet(); 1096 public DataSet ExportSeriesValues() 1106 public DataSet ExportSeriesValues(string seriesNames) 1120 public DataSet ExportSeriesValues(Series series)