Class HttpSendFinishArgs
Arguments for OnSendStart.
Inheritance
System.Object
HttpSendFinishArgs
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 HttpSendFinishArgs
Properties
RequestBinaryContent
Gets or sets the binary content of the request.
Declaration
public byte[] RequestBinaryContent { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
RequestTextContent
Gets or sets the text content of the request.
Declaration
public string RequestTextContent { get; }
Property Value
Type | Description |
---|---|
System.String |
ResponseBinaryContent
Gets or sets the binary content of the response.
Declaration
public byte[] ResponseBinaryContent { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
ResponseHeaders
Gets or sets the headers of the response.
Declaration
public NameValueCollection ResponseHeaders { get; }
Property Value
Type | Description |
---|---|
System.Collections.Specialized.NameValueCollection |
ResponseTextContent
Gets or sets the binary content of the response.
Declaration
public string ResponseTextContent { get; }
Property Value
Type | Description |
---|---|
System.String |
Sender
Gets or sets the sender of the request, either a client or publisher.
Declaration
public object Sender { get; }
Property Value
Type | Description |
---|---|
System.Object |