Table of Contents

Class IndexBuilderNotification

Namespace
Dynamicweb.Indexing.Builders.Notifications
Assembly
Dynamicweb.Indexing.dll
The Class IndexBuilderNotification represents index builder notification
public class IndexBuilderNotification : IIndexBuilderNotification
Inheritance
IndexBuilderNotification
Implements
Inherited Members

Constructors

IndexBuilderNotification()

Initializes a new instance of the IndexBuilderNotification class.
public IndexBuilderNotification()

IndexBuilderNotification(JObject)

Initializes a new instance of the IndexBuilderNotification class.
public IndexBuilderNotification(JObject obj)

Parameters

obj JObject
The object.

IndexBuilderNotification(XElement)

Initializes a new instance of the IndexBuilderNotification class.
public IndexBuilderNotification(XElement element)

Parameters

element XElement
The element.

Properties

NotificationType

Notification type
public IndexBuilderNotificationType NotificationType { get; set; }

Property Value

IndexBuilderNotificationType

Recipients

List of notification recipients
public IEnumerable<string> Recipients { get; set; }

Property Value

IEnumerable<string>

SenderEmail

Notification sender email
public string SenderEmail { get; set; }

Property Value

string

SenderName

Notification sender name
public string SenderName { get; set; }

Property Value

string

SendLog

Send log file in the notification
public bool SendLog { get; set; }

Property Value

bool

Subject

Notification subject
public string Subject { get; set; }

Property Value

string

Template

Notification template
public string Template { get; set; }

Property Value

string
To top