public OnDemandProcessReportParameters(AspNetCore.ReportingServices.ReportIntermediateFormat.Report aReport, OnDemandProcessingContext aContext)
     : base(aContext)
 {
     this.m_report = aReport;
     if (aContext.IsRdlSandboxingEnabled())
     {
         IRdlSandboxConfig rdlSandboxing = aContext.Configuration.RdlSandboxing;
         base.m_maxStringResultLength = rdlSandboxing.MaxStringResultLength;
     }
 }
 internal SharedDataSetProcessReportParameters(DataSetCore dataSetCore, OnDemandProcessingContext odpContext)
     : base(odpContext)
 {
     m_dataSetCore = dataSetCore;
     if (odpContext.IsRdlSandboxingEnabled())
     {
         IRdlSandboxConfig rdlSandboxing = odpContext.Configuration.RdlSandboxing;
         m_maxStringResultLength = rdlSandboxing.MaxStringResultLength;
     }
 }
コード例 #3
0
 internal OnDemandProcessReportParameters(Microsoft.ReportingServices.ReportIntermediateFormat.Report aReport, OnDemandProcessingContext aContext)
     : base(aContext)
 {
     m_report = aReport;
     if (aContext.IsRdlSandboxingEnabled())
     {
         IRdlSandboxConfig rdlSandboxing = aContext.Configuration.RdlSandboxing;
         m_maxStringResultLength = rdlSandboxing.MaxStringResultLength;
     }
 }