Show / Hide Table of Contents

Class NotificationEventArgs

Notification event arguments class.

Inheritance
System.Object
NotificationEventArgs
CollectionNotificationEventArgs
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 Source

NotificationEventArgs(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 Source

CallbackUri

Gets the callback URI.

Declaration
public Uri CallbackUri { get; }
Property Value
Type Description
System.Uri
View Source

ChangeType

Gets the type of the change.

Declaration
public ChangeType ChangeType { get; }
Property Value
Type Description
ChangeType
View Source

CorrelationId

Gets or sets the correlation Id.

Declaration
public Guid CorrelationId { get; set; }
Property Value
Type Description
System.Guid
View Source

Notification

Gets the notification.

Declaration
public Notification Notification { get; }
Property Value
Type Description
Notification
View Source

RequestId

Gets or sets the request identifier.

Declaration
public Guid RequestId { get; set; }
Property Value
Type Description
System.Guid
View Source

ResourceData

Gets the resource data.

Declaration
public object ResourceData { get; }
Property Value
Type Description
System.Object
View Source

TenantId

Gets or sets the tenant.

Declaration
public string TenantId { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Generated by DocFX