コード例 #1
0
 //New implementation of the CreateAndRegisterStream method
 // Using in Render
 public System.IO.Stream IntermediateCreateAndRegisterStream(string name, string extension, System.Text.Encoding encoding, string mimeType
                                                             , bool willSeek, Microsoft.ReportingServices.Interfaces.StreamOper operation)
 {
     _name              = name;
     _encoding          = encoding;
     _extension         = extension;
     _mimeType          = mimeType;
     _operation         = operation;
     _willSeek          = willSeek;
     intermediateStream = new System.IO.MemoryStream();
     return(intermediateStream);
 }
コード例 #2
0
 //New implementation of the CreateAndRegisterStream method
 // Using in Render
 public System.IO.Stream IntermediateCreateAndRegisterStream(string name, string extension, System.Text.Encoding encoding, string mimeType
     , bool willSeek, Microsoft.ReportingServices.Interfaces.StreamOper operation)
 {
     _name = name;
     _encoding = encoding;
     _extension = extension;
     _mimeType = mimeType;
     _operation = operation;
     _willSeek = willSeek;
     intermediateStream = new System.IO.MemoryStream();
     return intermediateStream;
 }