示例#1
0
 /// <summary>
 /// Build the URL to something static in the CDN
 /// </summary>
 /// <returns></returns>
 public static string StaticDataPath(CDNData target, Games game = Games.DOTA2)
 {
     switch (target)
     {
         case CDNData.DATAGRAM_NETWORK_CONFIG:
             return "/apps/sdr/network_config.json";
         default:
             return null;
     }
 }
示例#2
0
        /// <summary>
        /// Build the URL to something static in the CDN
        /// </summary>
        /// <returns></returns>
        public static string StaticDataPath(CDNData target, Games game = Games.DOTA2)
        {
            switch (target)
            {
            case CDNData.DATAGRAM_NETWORK_CONFIG:
                return("/apps/sdr/network_config.json");

            default:
                return(null);
            }
        }