Struct OsInfo
An object that encapsulates application metadata.
Inherited Members
Namespace: LaunchDarkly.Sdk.EnvReporting.LayerModels
Assembly: LaunchDarkly.CommonSdk.dll
Syntax
public readonly struct OsInfo
Constructors
OsInfo(string, string, string)
Constructs a new OsInfo instance.
Declaration
public OsInfo(string family, string name, string version)
Parameters
Type | Name | Description |
---|---|---|
string | family | the family. |
string | name | the name. |
string | version | the version. |
Properties
Family
The operating system's family.
Declaration
public string Family { get; }
Property Value
Type | Description |
---|---|
string |
Name
The operating system's name.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string |
Version
The operating system's version.
Declaration
public string Version { get; }
Property Value
Type | Description |
---|---|
string |