Interface IRVUserContextProvider
An interface that handle user resolution.
Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.WebAPI.dll
Syntax
public interface IRVUserContextProvider
Methods
GetUserContext(HttpContext)
A method that should create the user context object based on the Microsoft.AspNetCore.Http.HttpContext. Do not store a reference to the HttpContext object.
Declaration
IRVUserContext GetUserContext(HttpContext aspnetContext)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Http.HttpContext | aspnetContext |
Returns
Type | Description |
---|---|
IRVUserContext | Implementation of the IRVUserContext interface. The returned value will be passed to other Reveal providers, like IRVDashboardProvider
RVUserContext is a default implementation you could use.
and |