Class HttpResponseReceivedArgs
Arguments passed into callbacks when an HTTP response is received.
Inheritance
System.Object
HttpResponseReceivedArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class HttpResponseReceivedArgs
Properties
Content
Gets or sets the binary content received from the server.
Declaration
public byte[] Content { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
RequestArgs
Gets or sets the original request arguments.
Declaration
public HttpRequestArgs RequestArgs { get; set; }
Property Value
Type | Description |
---|---|
HttpRequestArgs |
Response
Gets or sets the incoming HTTP response received from the server.
Declaration
public WebResponse Response { get; set; }
Property Value
Type | Description |
---|---|
System.Net.WebResponse |
Sender
Gets or sets the sender of the request, either a client or publisher.
Declaration
public object Sender { get; set; }
Property Value
Type | Description |
---|---|
System.Object |