Class ApplicationMetadata
Metadata about the application where the SDK is running.
Inherited Members
Namespace: LaunchDarkly.Sdk.Integrations.Plugins
Assembly: LaunchDarkly.CommonSdk.dll
Syntax
public sealed class ApplicationMetadata
Constructors
ApplicationMetadata(string, string, string, string)
Initializes a new instance of the ApplicationMetadata class with the specified application ID, version, name, and version name.
Declaration
public ApplicationMetadata(string id = null, string version = null, string name = null, string versionName = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | The application identifier. |
| string | version | The application version. |
| string | name | The application name. |
| string | versionName | The application version name. |
Properties
Id
Gets the application identifier.
Declaration
public string Id { get; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Gets the application name.
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Version
Gets the application version.
Declaration
public string Version { get; }
Property Value
| Type | Description |
|---|---|
| string |
VersionName
Gets the application version name.
Declaration
public string VersionName { get; }
Property Value
| Type | Description |
|---|---|
| string |