Class SeverEventAuthorizationResult
Represents the result of server event authorization, indicating which event sources the user can and cannot access.
Inheritance
object
Namespace: Umbraco.Cms.Core.Models.ServerEvents
Assembly: Umbraco.Core.dll
Syntax
public class SeverEventAuthorizationResult
Constructors
View SourceSeverEventAuthorizationResult()
Declaration
public SeverEventAuthorizationResult()
Properties
View SourceAuthorizedEventSources
The list of events the user should be authorized to listen to
Declaration
public required IEnumerable<string> AuthorizedEventSources { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<string> |
UnauthorizedEventSources
The list of events the user should not be authorized to listen to
Declaration
public required IEnumerable<string> UnauthorizedEventSources { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<string> |