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
Inheritance
Object
AddStudioNotificationOrCreateGroupEvent
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
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 |