Interface IEventReceiverDefinition
Base class that defines general properties of an event receiver for lists and webs
Assembly: PnP.Core.dll
Syntax
public interface IEventReceiverDefinition : IDataModel<IEventReceiverDefinition>, IDataModelParent, IDataModelWithContext, ISupportModules<IEventReceiverDefinition>, IDataModelGet<IEventReceiverDefinition>, IDataModelLoad<IEventReceiverDefinition>, IDataModelDelete, IQueryableDataModel
Properties
A special property used to add an asterisk to a $select statement
Declaration
Property Value
The types of events that can be handled by event receivers.
Declaration
EventReceiverType EventType { get; set; }
Property Value
The fully-qualified name of the assembly that contains the event receiver for the feature.
Declaration
string ReceiverAssembly { get; }
Property Value
The class name of the event receiver for the feature.
Declaration
string ReceiverClass { get; }
Property Value
The identifier of the receiver for the event.
Declaration
Property Value
The name of the receiver for the event.
Declaration
string ReceiverName { get; set; }
Property Value
The URL of the receiver for the event.
Declaration
string ReceiverUrl { get; set; }
Property Value
The integer that represents the relative sequence of the event.
Declaration
int SequenceNumber { get; set; }
Property Value
Enumeration that specifies the synchronization state for the event receiver.
Declaration
EventReceiverSynchronization Synchronization { get; set; }
Property Value
Extension Methods