Class VisitorGroupRole
The VisitorGroupRole class holds a VisitorGroup and its VisitorGroupCriterion collection.
Implements
Inherited Members
Namespace: EPiServer.Personalization.VisitorGroups
Assembly: EPiServer.Framework.AspNetCore.dll
Version: 12.0.3Syntax
public class VisitorGroupRole : VirtualRoleProviderBase, IInitializableVirtualRole
Constructors
VisitorGroupRole()
Initializes a new instance of the Visitor
Declaration
public VisitorGroupRole()
VisitorGroupRole(VisitorGroup, IVisitorGroupRepository, IVisitorGroupStatisticsLogger, ICriterionFactory, IAggregatedPersonalizationEvaluator, IHttpContextAccessor)
Initializes a new instance of the Visitor
Declaration
public VisitorGroupRole(VisitorGroup visitorGroup, IVisitorGroupRepository visitorGroupRepository, IVisitorGroupStatisticsLogger visitorGroupStatisticsLogger, ICriterionFactory criterionFactory, IAggregatedPersonalizationEvaluator personalizationEvaluator, IHttpContextAccessor httpContextAccessor)
Parameters
Type | Name | Description |
---|---|---|
Visitor |
visitorGroup | |
IVisitor |
visitorGroupRepository | |
IVisitor |
visitorGroupStatisticsLogger | |
ICriterion |
criterionFactory | |
IAggregated |
personalizationEvaluator | |
Microsoft. |
httpContextAccessor |
Fields
ImpersonatedVisitorGroupByID
Key to httpContext Items to get array of impersonated groups id for current request
Declaration
public const string ImpersonatedVisitorGroupByID = "ImpersonatedVisitorGroupsById"
Field Value
Type | Description |
---|---|
System. |
ImpersonatedVisitorGroupByName
Key to httpContext Items to get array of impersonated groups name for current request
Declaration
public const string ImpersonatedVisitorGroupByName = "ImpersonatedVisitorGroupsByName"
Field Value
Type | Description |
---|---|
System. |
VisitorGroupKeyByID
Query string key to set impersonation to visitor groups by id
Declaration
public const string VisitorGroupKeyByID = "visitorgroupsByID"
Field Value
Type | Description |
---|---|
System. |
VisitorGroupKeyByName
Query string key to set impersonation to visitor groups by name
Declaration
public const string VisitorGroupKeyByName = "visitorgroupsByName"
Field Value
Type | Description |
---|---|
System. |
Properties
ID
Gets the ID for the visitor group which is wrapped by virtual Role provider.
Declaration
public virtual Guid ID { get; }
Property Value
Type | Description |
---|---|
System. |
The ID. |
Name
Gets the friendly name used to refer to the provider during configuration.
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Overrides
StatisticsLogger
Gets the visitor group statistics logger.
Declaration
protected IVisitorGroupStatisticsLogger StatisticsLogger { get; }
Property Value
Type | Description |
---|---|
IVisitor |
The visitor group statistics logger. |
VisitorGroupRepository
Accessor for visitor group repository
Declaration
protected IVisitorGroupRepository VisitorGroupRepository { get; }
Property Value
Type | Description |
---|---|
IVisitor |
Methods
AddVisitorGroupStatistics(Boolean, HttpContext)
Adds statistics for visitor groups if statistics is enabled.
Declaration
public virtual void AddVisitorGroupStatistics(bool isMatch, HttpContext httpContext)
Parameters
Type | Name | Description |
---|---|---|
System. |
isMatch | if set to |
Microsoft. |
httpContext | The HTTP context. |
Initialize(String)
Initializes the provider.
Declaration
public void Initialize(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The friendly name of the provider. |
Initialize(String, NameValueCollection)
Initializes the provider.
Declaration
public override void Initialize(string name, NameValueCollection config)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The friendly name of the provider. |
System. |
config | A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider. |
Overrides
Exceptions
Type | Condition |
---|---|
System. |
The name of the provider is null. |
System. |
The name of the provider has a length of zero. |
System. |
An attempt is made to call System. |
IsInVirtualRole(IPrincipal, Object)
Determines whether the specified principal is a member of this role.
Declaration
public override bool IsInVirtualRole(IPrincipal principal, object context)
Parameters
Type | Name | Description |
---|---|---|
System. |
principal | The principal. |
System. |
context | The object context. |
Returns
Type | Description |
---|---|
System. |
|
Overrides
Remarks
The context parameter may be null but can be used to transfer external context to a Virtual role provider.
IsMatch(IPrincipal, HttpContext)
Determines whether the specified principal is a member of this role.
Declaration
public bool IsMatch(IPrincipal principal, HttpContext httpContext)
Parameters
Type | Name | Description |
---|---|---|
System. |
principal | The principal. |
Microsoft. |
httpContext | The HTTP context. |
Returns
Type | Description |
---|---|
System. |
|
Remarks
The context parameter may be null but can be used to transfer external context to a Virtual role provider