Class FailedNotificationEventArgs
Event arguments used when exceptions are raised in callbacks.
Inheritance
System.Object
FailedNotificationEventArgs
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 FailedNotificationEventArgs
Constructors
View SourceFailedNotificationEventArgs(NotificationEventArgs, Exception)
Initializes a new instance of the FailedNotificationEventArgs class.
Declaration
public FailedNotificationEventArgs(NotificationEventArgs notification, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
NotificationEventArgs | notification | The NotificationEventArgs instance containing the event data. |
System.Exception | exception | The exception. |
Properties
View SourceException
Gets the exception being raised.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.Exception |
Notification
Gets the notification that was being processed while this callback failed.
Declaration
public NotificationEventArgs Notification { get; }
Property Value
Type | Description |
---|---|
NotificationEventArgs |