ResourceControllerGetImageThumbnail Method

GET /Resource/ImageThumbnailFile/{id} Gets the thumbnail for the specified image as a file.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntax
[HttpGetAttribute]
[ActionNameAttribute("ImageThumbnailFile")]
public HttpResponseMessage GetImageThumbnail(
	Guid id,
	Nullable<int> maxWidth = null,
	Nullable<int> maxHeight = null,
	Nullable<Guid> sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the image resource.
maxWidth (Optional)
Type: SystemNullableInt32
The maximum width, if any.
maxHeight (Optional)
Type: SystemNullableInt32
The maximum height, if any.
sessionId (Optional)
Type: SystemNullableGuid
The ID of the session.

Return Value

Type: HttpResponseMessage
A status code indicating success and the file, or a failure reason.
See Also