Interface IUAParserOutput
Representing the parse results. Structure of this class aligns with the ua-parser-output WebIDL structure defined in this document: https://github.com/ua-parser/uap-core/blob/master/docs/specification.md
Namespace:FubarDev.WebDavServer.Utils.UAParser
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IUAParserOutput
Properties
| Improve this Doc View SourceDevice
The Device parsed from the user agent string
Declaration
Device Device { get; }
Property Value
Type | Description |
---|---|
Device |
OS
The OS parsed from the user agent string
Declaration
OS OS { get; }
Property Value
Type | Description |
---|---|
OS |
String
The user agent string, the input for the UAParser
Declaration
string String { get; }
Property Value
Type | Description |
---|---|
String |
UA
The User Agent parsed from the user agent string
Declaration
UserAgent UA { get; }
Property Value
Type | Description |
---|---|
UserAgent |