IRenderingExtension.GetRenderingResource Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns any information from the rendering extension.
public:
void GetRenderingResource(Microsoft::ReportingServices::Interfaces::CreateAndRegisterStream ^ createAndRegisterStreamCallback, System::Collections::Specialized::NameValueCollection ^ deviceInfo);
public void GetRenderingResource (Microsoft.ReportingServices.Interfaces.CreateAndRegisterStream createAndRegisterStreamCallback, System.Collections.Specialized.NameValueCollection deviceInfo);
abstract member GetRenderingResource : Microsoft.ReportingServices.Interfaces.CreateAndRegisterStream * System.Collections.Specialized.NameValueCollection -> unit
Public Sub GetRenderingResource (createAndRegisterStreamCallback As CreateAndRegisterStream, deviceInfo As NameValueCollection)
Parameters
- createAndRegisterStreamCallback
- CreateAndRegisterStream
The delegate function that receives the rendered stream.
- deviceInfo
- NameValueCollection
The device information settings. For more information, see Device Information Settings for Rendering Extensions.
Remarks
Implement this method to return any information you want the IRenderingExtension to return. For example, implement this method to return the icon associated with the rendering extension when the deviceInfo
parameter contains a setting named Icon
.