Class UserAgent
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
Id
Primary key.
[Key]
public long Id { get; set; }
Property Value
SHA256
Lookup-hash of the User-Agent HTTP header for unique identification.
public required string SHA256 { get; set; }
Property Value
Value
The User-Agent header that was sent by the client.
public required string Value { get; set; }