Class Http
Specify the full URL of the HTTP request within "target". Also specify any uploaded or downloaded file information within "source" or "target".
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public sealed class Http : IMessage<Http>, IEquatable<Http>, IDeepCloneable<Http>, IBufferMessage, IMessage
Constructors
Http()
Declaration
public Http()
Http(Http)
Declaration
public Http(Http other)
Parameters
| Type | Name | Description |
|---|---|---|
| Http | other |
Properties
Method
The HTTP request method (e.g. "GET", "POST", "PATCH", "DELETE").
Declaration
public string Method { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ReferralUrl
The URL for the HTTP referer.
Declaration
public string ReferralUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ResponseCode
The response status code, for example 200, 302, 404, or 500.
Declaration
public int ResponseCode { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
UserAgent
The User-Agent request header which includes the application type, operating system, software vendor or software version of the requesting software user agent.
Declaration
public string UserAgent { get; set; }
Property Value
| Type | Description |
|---|---|
| string |