Show / Hide Table of Contents

    Class NotificationEventArgs

    Notification event arguments class.

    Inheritance
    Object
    NotificationEventArgs
    CollectionNotificationEventArgs
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Microsoft.Graph.Communications.Core.Notifications
    Assembly: Microsoft.Graph.Communications.Core.dll
    Syntax
    public class NotificationEventArgs

    Constructors

    NotificationEventArgs(Uri, CommsNotification, ChangeType, Object)

    Initializes a new instance of the NotificationEventArgs class.

    Declaration
    public NotificationEventArgs(Uri callbackUri, CommsNotification notification, ChangeType changeType, object resourceData)
    Parameters
    Type Name Description
    Uri callbackUri

    The callback URI.

    CommsNotification notification

    The notification.

    ChangeType changeType

    Type of the change.

    Object resourceData

    The resource data.

    Properties

    AdditionalData

    Gets or sets the additional data.

    Declaration
    public IDictionary<string, object> AdditionalData { get; set; }
    Property Value
    Type Description
    IDictionary<String, Object>

    CallbackUri

    Gets the callback URI.

    Declaration
    public Uri CallbackUri { get; }
    Property Value
    Type Description
    Uri

    ChangeType

    Gets the type of the change.

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

    Notification

    Gets the notification.

    Declaration
    public CommsNotification Notification { get; }
    Property Value
    Type Description
    CommsNotification

    NotificationId

    Gets the notification identifier.

    Declaration
    public Guid NotificationId { get; }
    Property Value
    Type Description
    Guid

    RequestId

    Gets or sets the request identifier.

    Declaration
    public Guid RequestId { get; set; }
    Property Value
    Type Description
    Guid

    ResourceData

    Gets the resource data.

    Declaration
    public object ResourceData { get; }
    Property Value
    Type Description
    Object

    ScenarioId

    Gets or sets the scenario identifier.

    Declaration
    public Guid ScenarioId { get; set; }
    Property Value
    Type Description
    Guid

    TenantId

    Gets or sets the tenant.

    Declaration
    public string TenantId { get; set; }
    Property Value
    Type Description
    String
    Back to top Copyright (c) Microsoft Corporation. All rights reserved.