UtilGameFaqsScrapCheats(Uri, WebProxy, String) Method
Gets the published cheats in a game's profile page from gamefaqs.com website.
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 string ScrapCheats(
Uri gamefaqsUri,
WebProxy sslProxy = null,
string userAgent = ""
)
Public Shared Function ScrapCheats (
gamefaqsUri As Uri,
Optional sslProxy As WebProxy = Nothing,
Optional userAgent As String = ""
) As String
Dim gamefaqsUri As Uri
Dim sslProxy As WebProxy
Dim userAgent As String
Dim returnValue As String
returnValue = UtilGameFaqs.ScrapCheats(gamefaqsUri,
sslProxy, userAgent)
public:
static String^ ScrapCheats(
Uri^ gamefaqsUri,
WebProxy^ sslProxy = nullptr,
String^ userAgent = L""
)
static member ScrapCheats :
gamefaqsUri : Uri *
?sslProxy : WebProxy *
?userAgent : string
(* Defaults:
let _sslProxy = defaultArg sslProxy null
let _userAgent = defaultArg userAgent ""
*)
-> string
No code example is currently available or this language may not be supported.
- gamefaqsUri Uri
-
The Uri 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)"
String
A string in HTML format that contains the available cheats,
or
if the game page does not contains cheats.
This is a code example.
No code example is currently available or this language may not be supported.
Dim uri As New Uri("https://gamefaqs.gamespot.com/ps2/914828-metal-gear-solid-3-snake-eater")
Dim cheats As String = ScrapCheats(uri)
Console.WriteLine(cheats)
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.