Class EventReceiverOptions
- Namespace
- PnP.Core.Model.SharePoint
- Assembly
- PnP.Core.dll
Options that will have to be filled in when creating a new Event Receiver
public class EventReceiverOptions
- Inheritance
-
EventReceiverOptions
- Inherited Members
Properties
EventType
Type of event receiver to create.
public EventReceiverType EventType { get; set; }
Property Value
ReceiverAssembly
Assembly holding the event receiver code
public string ReceiverAssembly { get; set; }
Property Value
ReceiverClass
Class containing the event receiver code
public string ReceiverClass { get; set; }
Property Value
ReceiverName
Name of the event receiver.
public string ReceiverName { get; set; }
Property Value
ReceiverUrl
Url of the event receiver.
public string ReceiverUrl { get; set; }
Property Value
SequenceNumber
Sequence number in which the event receiver will be executed.
public int SequenceNumber { get; set; }
Property Value
Synchronization
The synchronization state for the event receiver.
public EventReceiverSynchronization Synchronization { get; set; }