RestfulResponse Constructor
In This Topic
Creates a new object from the incoming HTTP response
Syntax
'Declaration
Public Function New( _
ByVal As System.Net.Http.HttpContent _
)
'Usage
Dim content As System.Net.Http.HttpContent
Dim instance As New RestfulResponse(content)
public RestfulResponse(
System.Net.Http.HttpContent
)
public RestfulResponse(
: System.Net.Http.HttpContent
);
public function RestfulResponse(
: System.Net.Http.HttpContent
);
public: RestfulResponse(
System.Net.Http.HttpContent*
)
public:
RestfulResponse(
System.Net.Http.HttpContent^
)
Parameters
- content
- Content of the HTTP response that this object represents
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also