SaaS CMS has officially launched! Learn more now.

Class DispatcherResult

The dispatch result.

Inheritance
System.Object
DispatcherResult
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public class DispatcherResult

Constructors

DispatcherResult()

Declaration
public DispatcherResult()

Properties

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