PlainTextWebResponse 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 PlainTextWebResponse( bool, HttpWebResponse ) instead.")]
public PlainTextWebResponse(
bool success,
Uri responseUrl,
string plainText,
Encoding encoding
)
<ObsoleteAttribute("Please use PlainTextWebResponse( bool, HttpWebResponse ) instead.")>
Public Sub New (
success As Boolean,
responseUrl As Uri,
plainText As String,
encoding As Encoding
)
public:
[ObsoleteAttribute(L"Please use PlainTextWebResponse( bool, HttpWebResponse ) instead.")]
PlainTextWebResponse(
bool success,
Uri^ responseUrl,
String^ plainText,
Encoding^ encoding
)
[<ObsoleteAttribute("Please use PlainTextWebResponse( bool, HttpWebResponse ) instead.")>]
new :
success : bool *
responseUrl : Uri *
plainText : string *
encoding : Encoding -> PlainTextWebResponse
Parameters
- success
- Type: SystemBoolean
true if the response is considered successful, false otherwise. - responseUrl
- Type: SystemUri
The URL of the response. - plainText
- Type: SystemString
The plain text of the response. - encoding
- Type: System.TextEncoding
The encoding of the plain text.
Remarks See Also