UtilGameFaqsHasCheats(String, WebProxy, String) Method
Determine whether a game's profile page from gamefaqs.com website contains cheats.
Namespace: DevCase.ThirdParty.GameFaqsAssembly: DevCase.net48.ThirdParty.GameFaqs (in DevCase.net48.ThirdParty.GameFaqs.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool HasCheats(
string gamefaqsUrl,
WebProxy sslProxy = null,
string userAgent = ""
)
Public Shared Function HasCheats (
gamefaqsUrl As String,
Optional sslProxy As WebProxy = Nothing,
Optional userAgent As String = ""
) As Boolean
Dim gamefaqsUrl As String
Dim sslProxy As WebProxy
Dim userAgent As String
Dim returnValue As Boolean
returnValue = UtilGameFaqs.HasCheats(gamefaqsUrl,
sslProxy, userAgent)
public:
static bool HasCheats(
String^ gamefaqsUrl,
WebProxy^ sslProxy = nullptr,
String^ userAgent = L""
)
static member HasCheats :
gamefaqsUrl : string *
?sslProxy : WebProxy *
?userAgent : string
(* Defaults:
let _sslProxy = defaultArg sslProxy null
let _userAgent = defaultArg userAgent ""
*)
-> bool
No code example is currently available or this language may not be supported.
- gamefaqsUrl String
-
The url that points to a game's profile page from gamefaqs.com website.
(eg. https://gamefaqs.gamespot.com/ps2/914828-metal-gear-solid-3-snake-eater)
- sslProxy WebProxy (Optional)
-
A custom WebProxy to do the web request to gamefaqs.com website (the proxy must support SSL).
If this parameter is empty, no proxy is used.
- userAgent String (Optional)
-
A web-browser user-agent to assign in the request to gamefaqs.com website.
Default value is: "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
Boolean if the game page contains cheats, otherwise,
.
This is a code example.
No code example is currently available or this language may not be supported.
Dim url As String = "https://gamefaqs.gamespot.com/ps2/914828-metal-gear-solid-3-snake-eater"
Dim hasCheats As Boolean = HasCheats(url)
Console.WriteLine(hasCheats)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.