public string GetChunkMimeType(string name, ReportProcessing.ReportChunkTypes type)
        {
            string result = default(string);
            Stream chunk  = this.m_chunkFactory.GetChunk(name, type, ChunkMode.Open, out result);

            chunk.Close();
            return(result);
        }
 public Stream CreateReportChunk(string name, ReportProcessing.ReportChunkTypes type, string mimeType)
 {
     return(this.m_chunkFactory.CreateChunk(name, type, mimeType));
 }
 public Stream GetReportChunk(string name, ReportProcessing.ReportChunkTypes type, out string mimeType)
 {
     return(this.m_chunkFactory.GetChunk(name, type, ChunkMode.Open, out mimeType));
 }
Example #4
0
 public string GetChunkMimeType(string name, ReportProcessing.ReportChunkTypes type)
 {
     m_chunkFactory.GetChunk(name, type, ChunkMode.Open, out string mimeType).Close();
     return(mimeType);
 }