SaaS CMS has officially launched! Learn more now.

Class DispatcherResult

Inheritance
System.Object
DispatcherResult
Namespace: EPiServer.Notification.Internal
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public class DispatcherResult : Object

Constructors

DispatcherResult()

Declaration
public DispatcherResult()

Properties

ActiveProvidersCount

Get or sets the total number of active (not disabled) providers

Declaration
public int ActiveProvidersCount { get; set; }
Property Value
Type Description
System.Int32

HasBeenCancelled

Gets or sets a value indicating if the operation has been cancelled.

Declaration
public bool HasBeenCancelled { get; set; }
Property Value
Type Description
System.Boolean

ProviderSentResults

Get all the result from the providers.

Declaration
public IDictionary<string, NotificationProviderResult> ProviderSentResults { get; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, NotificationProviderResult>

TotalFailedSentMessage

Gets the number of failed sent messages.

Declaration
public int TotalFailedSentMessage { get; }
Property Value
Type Description
System.Int32

TotalSucceededSentMessage

Gets the number of succeeded sent messages.

Declaration
public int TotalSucceededSentMessage { get; }
Property Value
Type Description
System.Int32

Extension Methods