ViewController<T>.TrackUsage Method |
Tracks the usage for the view 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("TrackUsage/{id}")]
[ProducesResponseTypeAttribute(440)]
public ActionResult TrackUsage(
Guid id,
Guid? sessionId = null,
Guid? clientId = null
)
<HttpPutAttribute("TrackUsage/{id}")>
<ProducesResponseTypeAttribute(440)>
Public Function TrackUsage (
id As Guid,
Optional sessionId As Guid? = Nothing,
Optional clientId As Guid? = Nothing
) As ActionResult
public:
[HttpPutAttribute(L"TrackUsage/{id}")]
[ProducesResponseTypeAttribute(440)]
ActionResult^ TrackUsage(
Guid id,
Nullable<Guid> sessionId = nullptr,
Nullable<Guid> clientId = nullptr
)
[<HttpPutAttribute("TrackUsage/{id}")>]
[<ProducesResponseTypeAttribute(440)>]
member TrackUsage :
id : Guid *
?sessionId : Nullable<Guid> *
?clientId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
let _clientId = defaultArg clientId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the view to track the usage 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