UtilGameFaqsHasSavegames(Uri, WebProxy, String) Method
Determine whether a game's profile page from gamefaqs.com website contains public savegames.
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 HasSavegames(
Uri gamefaqsUri,
WebProxy sslProxy = null,
string userAgent = ""
)
Public Shared Function HasSavegames (
gamefaqsUri As Uri,
Optional sslProxy As WebProxy = Nothing,
Optional userAgent As String = ""
) As Boolean
Dim gamefaqsUri As Uri
Dim sslProxy As WebProxy
Dim userAgent As String
Dim returnValue As Boolean
returnValue = UtilGameFaqs.HasSavegames(gamefaqsUri,
sslProxy, userAgent)
public:
static bool HasSavegames(
Uri^ gamefaqsUri,
WebProxy^ sslProxy = nullptr,
String^ userAgent = L""
)
static member HasSavegames :
gamefaqsUri : Uri *
?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.
- 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)"
Boolean if the game page contains public savegames, otherwise,
.
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 hasSavegames As Boolean = HasSavegames(uri)
Console.WriteLine(hasSavegames)
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.