Class AddStudioNotificationOrCreateGroupEvent
Use this event if you want to add a notification to a certain group. In case the group does not exist, this will also create a group to hold the notification
Inherited Members
Namespace: Sdl.Desktop.IntegrationApi.Notifications.Events
Assembly: Sdl.Desktop.IntegrationApi.dll
Syntax
public class AddStudioNotificationOrCreateGroupEvent
Constructors
AddStudioNotificationOrCreateGroupEvent(string, IStudioNotification, string)
Adds the given notification to a group with the given key and specifies a group title
Declaration
public AddStudioNotificationOrCreateGroupEvent(string groupNotificationKey, IStudioNotification notification, string newGroupTitle)
Parameters
| Type | Name | Description |
|---|---|---|
| string | groupNotificationKey | The unique group key |
| IStudioNotification | notification | The dotification to be added |
| string | newGroupTitle | The group title |
Properties
GroupNotificationKey
The unique identifier for the group to which the notification needs to be added
Declaration
public string GroupNotificationKey { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
NewGroupTitle
The title for the group in case it needs to be created
Declaration
public string NewGroupTitle { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Notification
The notification to be added
Declaration
public IStudioNotification Notification { get; set; }
Property Value
| Type | Description |
|---|---|
| IStudioNotification |