Beispiel #1
0
 public void Add(AspNetCore.ReportingServices.ReportProcessing.DataSet dataSetDef)
 {
     try
     {
         if (this.m_lockAdd)
         {
             Monitor.Enter(this.m_collection);
         }
         this.m_collection.Add(dataSetDef.Name, new DataSetImpl(dataSetDef));
     }
     finally
     {
         if (this.m_lockAdd)
         {
             Monitor.Exit(this.m_collection);
         }
     }
 }
 public DataSetImpl(AspNetCore.ReportingServices.ReportProcessing.DataSet dataSetDef)
 {
     this.m_dataSet = dataSetDef;
 }