Class NotificationProviderResult

NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version. The notification provider result.

Inheritance
System.Object
NotificationProviderResult
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: 9.12.2
Syntax
public class NotificationProviderResult

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

Extension Methods