DeliveryController.DeliverLink Method |
Delivers the content using the specified delivery settings.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[HttpPostAttribute("DeliverLink")]
public ActionResult DeliverLink(
[FromBodyAttribute] ShareLinkOptions options,
Guid? sessionId = null
)
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
<HttpPostAttribute("DeliverLink")>
Public Function DeliverLink (
<FromBodyAttribute> options As ShareLinkOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[HttpPostAttribute(L"DeliverLink")]
ActionResult^ DeliverLink(
[FromBodyAttribute] ShareLinkOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
[<HttpPostAttribute("DeliverLink")>]
member DeliverLink :
[<FromBodyAttribute>] options : ShareLinkOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- options
- Type: Dundas.BI.WebApi.Models.ShareLinkOptions
The settings containing the link to share and delivery information. - sessionId (Optional)
- Type: System.Nullable<Guid>
The ID of the session.
Return Value
Type:
ActionResult
See Also