Class ClientContextConfig
Provides information for Client Context header. Client Context header needs information like App title, version code, version name, package name etc.
public class ClientContextConfig
- Inheritance
-
ClientContextConfig
- Inherited Members
Constructors
ClientContextConfig()
public ClientContextConfig()
Properties
AppPackageName
The name of your app package. For example, com.your_company.your_app. If this property is not null, the value would be used in Client Context header.
public string AppPackageName { get; set; }
Property Value
AppTitle
The title of your app. For example, "My App". If this property is not null, the value would be used in Client Context header.
public string AppTitle { get; set; }
Property Value
AppVersionCode
The version code of your app. For example, 3.0. If this property is not null, the value would be used in Client Context header.
public string AppVersionCode { get; set; }
Property Value
AppVersionName
The version for your app. For example, V3.0. If this property is not null, the value would be used in Client Context header.
public string AppVersionName { get; set; }
Property Value
Locale
The locale of the device. For example, en_US. If this property is not null, the value would be used in Client Context header.
public string Locale { get; set; }
Property Value
Make
The manufacturer of the device. For example, Samsung. If this property is not null, the value would be used in Client Context header.
public string Make { get; set; }
Property Value
Model
The model of the device. For example, Nexus. If this property is not null, the value would be used in Client Context header.
public string Model { get; set; }
Property Value
Platform
The operating system of the device. For example, iPhoneOS. If this property is not null, the value would be used in Client Context header.
public string Platform { get; set; }
Property Value
PlatformVersion
The version of the operating system of the device. For example, 8.1. If this property is not null, the value would be used in Client Context header.
public string PlatformVersion { get; set; }