Show / Hide Table of Contents

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 Source

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

Exception

Gets the exception being raised.

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

Notification

Gets the notification that was being processed while this callback failed.

Declaration
public NotificationEventArgs Notification { get; }
Property Value
Type Description
NotificationEventArgs
  • View Source
Back to top Generated by DocFX