Class CollectionNotificationEventArgs
The collection notification event args.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph.CoreSDK.Notifications
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public class CollectionNotificationEventArgs : NotificationEventArgs
Constructors
View SourceCollectionNotificationEventArgs(Uri, Notification, ChangeType, IReadOnlyList<Object>)
Initializes a new instance of the CollectionNotificationEventArgs class.
Declaration
public CollectionNotificationEventArgs(Uri callbackUri, Notification notification, ChangeType changeType, IReadOnlyList<object> resourceData)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Uri | callbackUri | The callback URI. |
| Notification | notification | The notification. |
| ChangeType | changeType | Type of the change. |
| System.Collections.Generic.IReadOnlyList<System.Object> | resourceData | The resource data. |
Properties
View SourceResourceData
Gets the resource data object list.
Declaration
public IReadOnlyList<object> ResourceData { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IReadOnlyList<System.Object> | The resource data object list. |