ChatterBox.Server.PushNotificationSender.StoreNotificationForSending C# (CSharp) Method

StoreNotificationForSending() private method

private StoreNotificationForSending ( string channelURI, string payload ) : void
channelURI string
payload string
return void
        private void StoreNotificationForSending(string channelURI, string payload)
        {
            Dictionary<string, string> notificationDict = new Dictionary<string, string>();
            notificationDict[channelURIKey] = channelURI;
            notificationDict[payloadKey] = payload;
            listOfNotificationsForSending.Add(notificationDict);
        }