예제 #1
0
        public string GetNotificationSubject(string messageType)
        {
            if (NotificationProviders != null && NotificationProviders.ContainsKey(messageType))
            {
                return(NotificationSubject[messageType]);
            }

            return(null);
        }
예제 #2
0
        public string[] GetNotificationProviders(string messageType)
        {
            if (NotificationProviders != null && NotificationProviders.ContainsKey(messageType))
            {
                return(NotificationProviders[messageType].Split(_arraySplitChar));
            }

            return(new string[0]);
        }