ReportExecutionService.GetRenderResource(String, String, String) Method

Definition

Returns the resource for a specified rendering extension format.

public:
 cli::array <System::Byte> ^ GetRenderResource(System::String ^ Format, System::String ^ DeviceInfo, [Runtime::InteropServices::Out] System::String ^ % MimeType);
public byte[] GetRenderResource (string Format, string DeviceInfo, out string MimeType);
member this.GetRenderResource : string * string * string -> byte[]
Public Function GetRenderResource (Format As String, DeviceInfo As String, ByRef MimeType As String) As Byte()

Parameters

Format
String

The format of the rendering extension for which to retrieve the resource. A list of supported extensions may be obtained by calling the ListRenderingExtensions() method.

DeviceInfo
String

The device-specific settings used by the rendering extension.

MimeType
String

The MIME type of the resource.

Returns

Byte[]

The rendering extension resource as a Base 64-encoded byte array.

Remarks

The table below shows header and permissions information on this operation.

SOAP Header Usage (In) TrustedUserHeaderValue

(Out) ServerInfoHeaderValue
Native Mode Required Permissions None
SharePoint Mode Required Permissions None

The DeviceInfo argument passed to this method must be the same as that specified in the call to the Render method.

An example of a rendering resource that is returned by the GetRenderResource method is the plus (+) image, which is used to expand groups in the HTML rendering extension. The resource that the method returns depends on the DeviceInfo parameter that is supplied. For more information about device information settings for rendering extensions, see Passing Device Information Settings to Rendering Extensions.

Applies to