Class NotificationProviderResult
The notification provider result.
Inheritance
System.Object
NotificationProviderResult
Namespace: EPiServer.Notification.Internal
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class NotificationProviderResult : Object
Constructors
NotificationProviderResult(String)
Declaration
public NotificationProviderResult(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
NotificationProviderResult(String, IEnumerable<String>)
Declaration
public NotificationProviderResult(string name, IEnumerable<string> errorMessages)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.Collections.Generic.IEnumerable<System.String> | errorMessages |
Fields
TotalFailedSentMessage
The number of failed message for the provider.
Declaration
public int TotalFailedSentMessage
Field Value
Type | Description |
---|---|
System.Int32 |
TotalSucceededSentMessage
Number of succeeded message for the provider.
Declaration
public int TotalSucceededSentMessage
Field Value
Type | Description |
---|---|
System.Int32 |
Properties
DisabledReason
The reason that the provider is disabled
Declaration
public string DisabledReason { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ErrorMessages
The error messages.
Declaration
public IList<string> ErrorMessages { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
IsDisabled
Whether or not the provider is disabled
Declaration
public bool IsDisabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
The name of the provider.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |