IUsageTrackingServiceTrackUsage Method  | 
 Indicates that a view is currently being used.
 
    Namespace: 
   Dundas.BI.Services
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxvoid TrackUsage(
	Guid viewId,
	Guid sessionId,
	Guid clientId
)
Sub TrackUsage ( 
	viewId As Guid,
	sessionId As Guid,
	clientId As Guid
)
void TrackUsage(
	Guid viewId, 
	Guid sessionId, 
	Guid clientId
)
abstract TrackUsage : 
        viewId : Guid * 
        sessionId : Guid * 
        clientId : Guid -> unit 
Parameters
- viewId
 - Type: SystemGuid
The ID of the view. - sessionId
 - Type: SystemGuid
The ID of the session. - clientId
 - Type: SystemGuid
The ID associated with the client (e.g. web browser cookie). 
Exceptions
Remarks
            This method records (tracks) the fact that the specified view is being used by the associated session. If
            the view usage tracking feature is not enabled, the method returns immediately.
            
  Security Note | 
|---|
| 
            Because this method does not check the security of the caller, it should not be directly exposed in
            externally-facing APIs (e.g. public web services).
             | 
See Also