JsonWebResponse Constructor (Boolean, Uri, String, Encoding) |
Note: This API is now obsolete.
Namespace:
NScrape
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax [ObsoleteAttribute("Please use JsonWebResponse( bool, HttpWebResponse ) instead.")]
public JsonWebResponse(
bool success,
Uri responseUrl,
string jsonText,
Encoding encoding
)
<ObsoleteAttribute("Please use JsonWebResponse( bool, HttpWebResponse ) instead.")>
Public Sub New (
success As Boolean,
responseUrl As Uri,
jsonText As String,
encoding As Encoding
)
public:
[ObsoleteAttribute(L"Please use JsonWebResponse( bool, HttpWebResponse ) instead.")]
JsonWebResponse(
bool success,
Uri^ responseUrl,
String^ jsonText,
Encoding^ encoding
)
[<ObsoleteAttribute("Please use JsonWebResponse( bool, HttpWebResponse ) instead.")>]
new :
success : bool *
responseUrl : Uri *
jsonText : string *
encoding : Encoding -> JsonWebResponse
Parameters
- success
- Type: SystemBoolean
true if the response is considered successful, false otherwise. - responseUrl
- Type: SystemUri
The URL of the response. - jsonText
- Type: SystemString
The JSON text of the response. - encoding
- Type: System.TextEncoding
The encoding of the JSON text.
Remarks See Also