Class EnvironmentVariable

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

EnvironmentVariable

C#
Copy
public static class EnvironmentVariable : object
Inheritance
EnvironmentVariable

Methods

View Source

GetEnvironmentVariable(String)

Get value of the specified environment variable.

Declaration
C#
Copy
public static string GetEnvironmentVariable(string variable)
Parameters
Type Name Description
String variable

The name of the environment variable.

Returns
Type Description
String

The value of the specified environment variable.

View Source

SetEnvironmentVariable(String, String)

Set value of the specified environment variable.

Declaration
C#
Copy
public static bool SetEnvironmentVariable(string variable, string value)
Parameters
Type Name Description
String variable

The name of the environment variable.

String value

String to set as a value.

Returns
Type Description
Boolean

True on success, false on error.