ShortLinkController.GetLongLink Method |
Gets a long link from the given short link.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpGetAttribute]
[ProducesResponseTypeAttribute(410)]
public ActionResult<string> GetLongLink(
string shortLink,
Guid? sessionId = null
)
<HttpGetAttribute>
<ProducesResponseTypeAttribute(410)>
Public Function GetLongLink (
shortLink As String,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of String)
public:
[HttpGetAttribute]
[ProducesResponseTypeAttribute(410)]
ActionResult<String^>^ GetLongLink(
String^ shortLink,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute>]
[<ProducesResponseTypeAttribute(410)>]
member GetLongLink :
shortLink : string *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<string>
Parameters
- shortLink
- Type: System.String
The short link to find the long link for. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<String>The operation completed successfully. The payload contains a
String object.
See Also