Struct ApplicationInfo
An object that encapsulates application metadata.
Inherited Members
Namespace: LaunchDarkly.Sdk
Assembly: LaunchDarkly.CommonSdk.dll
Syntax
public readonly struct ApplicationInfo
Constructors
ApplicationInfo(string, string, string, string)
Constructs a new ApplicationInfo instance.
Declaration
public ApplicationInfo(string id, string name, string version, string versionName)
Parameters
Type | Name | Description |
---|---|---|
string | id | id of the application |
string | name | name of the application |
string | version | version of the application |
string | versionName | friendly name for the version |
Properties
ApplicationId
A unique identifier representing the application where the LaunchDarkly SDK is running.
Declaration
public string ApplicationId { get; }
Property Value
Type | Description |
---|---|
string |
ApplicationName
A human friendly name for the application in which the LaunchDarkly SDK is running.
Declaration
public string ApplicationName { get; }
Property Value
Type | Description |
---|---|
string |
ApplicationVersion
A value representing the version of the application where the LaunchDarkly SDK is running.
Declaration
public string ApplicationVersion { get; }
Property Value
Type | Description |
---|---|
string |
ApplicationVersionName
A human friendly name for the version of the application in which the LaunchDarkly SDK is running.
Declaration
public string ApplicationVersionName { get; }
Property Value
Type | Description |
---|---|
string |