adTempus API
ArcanaDevelopment.adTempus.Client Namespace / NotificationGroup Class / Members Property


In This Topic
    Members Property
    In This Topic
    The members of the group
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public ReadOnly Property Members As NotificationGroupMemberCollection
    [NotNull()]
    public NotificationGroupMemberCollection Members {get;}
    [NotNull()]
    public:
    property NotificationGroupMemberCollection^ Members {
       NotificationGroupMemberCollection^ get();
    }
    Remarks

    A group's members may be NotificationIndividuals or other Notification Groups.

    By default any message sent to the NotificationGroup is sent to all of its Members, but each member may optionally have rules determining which messages are delivered to it, based on the message severity or on a schedule (see NotificationGroupMember for more information).

    To add a member to a group, create a new NotificationGroupMember, set the NotificationGroupMember.Recipient to the recipient, and add the NotificationGroupMember to the Members collection.

    Removing a member of the collection only removes the recipient from the group; it does not delete the recipient.

    See Also