Example #1
0
 public static int GetFormInt(string strName, int defValue)
 {
     return(GameRequest.GetFormInt(GameRequest.Request, strName, defValue));
 }
Example #2
0
 public static bool IsCrossSitePost()
 {
     return(!HttpContext.Current.Request.HttpMethod.Equals("POST") || GameRequest.IsCrossSitePost(GameRequest.GetUrlReferrer(), HttpContext.Current.Request.Url.Host));
 }
Example #3
0
 public static bool IsRobots()
 {
     return(GameRequest.IsSearchEnginesGet());
 }
Example #4
0
 public static string GetQueryString(string strName)
 {
     return(GameRequest.GetQueryString(GameRequest.Request, strName));
 }