コード例 #1
0
 public static string GetSendungenAbisZServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_sendungenAbisZ");
 }
コード例 #2
0
 public static string GetSendungVerpasstServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_sendungVerpasst");
 }
コード例 #3
0
 public static string GetNavigationServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_navigation");
 }
コード例 #4
0
 public static string GetRubrikenServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_rubriken");
 }
コード例 #5
0
 public static string GetLiveServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_live");
 }
コード例 #6
0
 public static string GetMeistGesehenServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_meistGesehen");
 }
コード例 #7
0
 public static string GetGanzeSendungenServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_ganzeSendungen");
 }
コード例 #8
0
 public static string GetIstMCEUpdateVerfuegbarServiceUrlServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_istMCEUpdateVerfuegbar");
 }
コード例 #9
0
 public static string GetBeitragsDetailsServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_beitragsDetails");
 }
コード例 #10
0
 public static string GetBeitragsTrennerServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_beitragsTrenner");
 }
コード例 #11
0
 public static string GetTippsServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_tipps");
 }
コード例 #12
0
 public static string GetThemenServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_themen");
 }
コード例 #13
0
 public static string GetTeaserServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_teaser");
 }
コード例 #14
0
 public static string GetSystemKeyValue(configuration config, string key)
 {
     foreach (value value2 in config.system)
     {
         if (value2.key == key)
         {
             return value2.Value;
         }
     }
     return "";
 }
コード例 #15
0
 public static string GetAktuellsteServiceUrl(configuration config)
 {
     return GetSystemKeyValue(config, "serviceUrl_aktuellste");
 }