Class NotificationEventArgs
Notification event arguments class.
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 NotificationEventArgs
Constructors
View SourceNotificationEventArgs(Uri, Notification, ChangeType, Object)
Initializes a new instance of the NotificationEventArgs class.
Declaration
public NotificationEventArgs(Uri callbackUri, Notification notification, ChangeType changeType, object resourceData)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | callbackUri | The callback URI. |
Notification | notification | The notification. |
ChangeType | changeType | Type of the change. |
System.Object | resourceData | The resource data. |
Properties
View SourceCallbackUri
Gets the callback URI.
Declaration
public Uri CallbackUri { get; }
Property Value
Type | Description |
---|---|
System.Uri |
ChangeType
Gets the type of the change.
Declaration
public ChangeType ChangeType { get; }
Property Value
Type | Description |
---|---|
ChangeType |
CorrelationId
Gets or sets the correlation Id.
Declaration
public Guid CorrelationId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Notification
Gets the notification.
Declaration
public Notification Notification { get; }
Property Value
Type | Description |
---|---|
Notification |
RequestId
Gets or sets the request identifier.
Declaration
public Guid RequestId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
ResourceData
Gets the resource data.
Declaration
public object ResourceData { get; }
Property Value
Type | Description |
---|---|
System.Object |
TenantId
Gets or sets the tenant.
Declaration
public string TenantId { get; set; }
Property Value
Type | Description |
---|---|
System.String |