Interface IRequestHasDeviceAndAppInfo
Used to indicate that a request object contains information about the device and application making the request.
Namespace: PKWARE.Smartcrypt.Protocol
Assembly: SmartcryptProtocol.dll
Syntax
public interface IRequestHasDeviceAndAppInfo
Properties
appName
The name of the application; null if the name is unknown.
Declaration
[CanBeNull]
string appName { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
appVersion
The version of the application; null if the version is unknown.
Declaration
[CanBeNull]
string appVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
deviceId
Can be 0, in which case deviceName should be set.
Declaration
long deviceId { get; set; }
Property Value
| Type | Description |
|---|---|
| Int64 |
deviceName
Should be null if deviceId is not 0.
Declaration
[CanBeNull]
string deviceName { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
platform
The name of the operating system on which this application is running; null if unknown.
Declaration
[CanBeNull]
string platform { get; set; }
Property Value
| Type | Description |
|---|---|
| String |