Delegate CreateStream
Used by the rendering extension to obtain a stream.
Namespace: Telerik.Reporting.Processing
Assembly: Telerik.Reporting.dll
Syntax
public delegate Stream CreateStream(string name, string extension, Encoding encoding, string mimeType);
Parameters
System. The name of the stream. |
System. The type of the rendering extension. |
System. The encoding used by the stream. |
System. The MIME type of the stream. |
Returns
System. The stream to be used by the Reporting engine. |
Remarks
The stream created by the CreateStream delegate is used by the Reporting engine and for best performance it is not advisable to be closed.
Constructors
CreateStream(Object, IntPtr)
Declaration
public CreateStream(object object, IntPtr method)
Parameters
System.
|
System.
|
Methods
BeginInvoke(String, String, Encoding, String, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(string name, string extension, Encoding encoding, string mimeType, AsyncCallback callback, object object)
Parameters
System.
|
System.
|
System.
|
System.
|
System.
|
System.
|
Returns
System.
|
EndInvoke(IAsyncResult)
Declaration
public virtual Stream EndInvoke(IAsyncResult result)
Parameters
System.
|
Returns
System.
|
Invoke(String, String, Encoding, String)
Declaration
public virtual Stream Invoke(string name, string extension, Encoding encoding, string mimeType)
Parameters
System.
|
System.
|
System.
|
System.
|
Returns
System.
|