Ejemplo n.º 1
0
        private static Dictionary <string, string> GetKeywords(IMailServerConfiguration serverConfiguration, Type inBoxImplementationType, object user)
        {
            Dictionary <string, string> keywords = KeywordFromType.GetKeyword(inBoxImplementationType);

            keywords.Add("mailaddress", serverConfiguration.ReplyAddress);
            KeywordFromString.GetKeyword(keywords, "user", user.ToString());
            return(keywords);
        }
Ejemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="typeOfService"></param>
 public NoEndpointsDefinedException(Type typeOfService) : base(KeywordFromType.GetKeyword(typeOfService))
 {
 }