Response MessageBody Property C# API
Gets the body of the message from the corresponding Request.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public string MessageBody { get; }

Field Value

The body of the message.
Remarks

For example, if this object is a response to a POST request, then this method will return the POST data that was sent.
Examples

The following example demonstrates getting the POST data message body from a Response
request.SetMessageBody("my post data");
Response response = request.Send();
string postData = response.MessageBody; // postData == "my post data"
See Also