コード例 #1
0
 public static string PrepareRequest(MethodType methodType, string key, GetBy getBy, string value, DateTime date)
 {
     return(string.Concat(methodType.GetParameters(), "?key=", key, "&", getBy.PrepareQueryParameter(value), "&", ReqestFor.Date(date)));
 }
コード例 #2
0
 public static string PrepareRequest(MethodType methodType, string key, GetBy getBy, string value, Days ofDays)
 {
     return(string.Concat(methodType.GetParameters(), "?key=", key, "&", getBy.PrepareQueryParameter(value), "&", ofDays.PrepareDays()));
 }
コード例 #3
0
 public static string PrepareRequest(MethodType methodType, string key, GetBy getBy, string value)
 {
     return string.Concat(methodType.GetParameters(), "?key=", key, "&", getBy.PrepareQueryParameter(value));
 }