public override System.Data.DataTable Clone() { DownloadsDataTable cln = ((DownloadsDataTable)(base.Clone())); cln.InitVars(); return(cln); }
private void InitClass() { this.DataSetName = "FilesDataSet"; this.Prefix = ""; this.Namespace = "http://tempuri.org/Sideris.xsd"; this.EnforceConstraints = false; this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; this.tableShares = new SharesDataTable(); base.Tables.Add(this.tableShares); this.tableDownloads = new DownloadsDataTable(); base.Tables.Add(this.tableDownloads); }
internal void InitVars(bool initTable) { this.tableShares = ((SharesDataTable)(base.Tables["Shares"])); if ((initTable == true)) { if ((this.tableShares != null)) { this.tableShares.InitVars(); } } this.tableDownloads = ((DownloadsDataTable)(base.Tables["Downloads"])); if ((initTable == true)) { if ((this.tableDownloads != null)) { this.tableDownloads.InitVars(); } } }
internal DownloadsRow(System.Data.DataRowBuilder rb) : base(rb) { this.tableDownloads = ((DownloadsDataTable)(this.Table)); }