Table of Contents

Class UserAgent

Namespace
GastroSky.Models
Assembly
GastroSky.Models.dll

User-Agent HTTP header DB entry.

[Table("UserAgents")]
public class UserAgent
Inheritance
UserAgent
Inherited Members

Properties

FirstOccurrenceUTC

When this user agent was first encountered by the server.

public required long FirstOccurrenceUTC { get; set; }

Property Value

long

Id

Primary key.

[Key]
public long Id { get; set; }

Property Value

long

SHA256

Lookup-hash of the User-Agent HTTP header for unique identification.

public required string SHA256 { get; set; }

Property Value

string

Value

The User-Agent header that was sent by the client.

public required string Value { get; set; }

Property Value

string