ViewController<T>.TrackUsages Method |
Tracks the usages for the views provided. If the session and client ID are not provided, the current cookie values are used.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPutAttribute("TrackUsages")]
[ProducesResponseTypeAttribute(440)]
public ActionResult TrackUsages(
[FromBodyAttribute] Guid[] ids,
Guid? sessionId = null,
Guid? clientId = null
)
<HttpPutAttribute("TrackUsages")>
<ProducesResponseTypeAttribute(440)>
Public Function TrackUsages (
<FromBodyAttribute> ids As Guid(),
Optional sessionId As Guid? = Nothing,
Optional clientId As Guid? = Nothing
) As ActionResult
public:
[HttpPutAttribute(L"TrackUsages")]
[ProducesResponseTypeAttribute(440)]
ActionResult^ TrackUsages(
[FromBodyAttribute] array<Guid>^ ids,
Nullable<Guid> sessionId = nullptr,
Nullable<Guid> clientId = nullptr
)
[<HttpPutAttribute("TrackUsages")>]
[<ProducesResponseTypeAttribute(440)>]
member TrackUsages :
[<FromBodyAttribute>] ids : Guid[] *
?sessionId : Nullable<Guid> *
?clientId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
let _clientId = defaultArg clientId null
*)
-> ActionResult
Parameters
- ids
- Type:System.Guid[]
The IDs of the views to track the usages for. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID. - clientId (Optional)
- Type: System.Nullable<Guid>
The client ID.
Return Value
Type:
ActionResult
See Also