Class SystemInfo

Definition

Namespace:
Tizen.System
Assembly:
Tizen.System.Information.dll
API Level:
3

The SystemInfo class provides static system feature. Please use Tizen.System.Information class. Information class supports same function.

C#
Copy
public static class SystemInfo : object
Inheritance
SystemInfo

Methods

View Source

TryGetValue(String, out Boolean)

Gets the bool value of the feature.

Declaration
C#
Copy
public static bool TryGetValue(string key, out bool value)
Parameters
Type Name Description
String key

The name of the feature.

Boolean value

The value of the given feature.

Returns
Type Description
Boolean

Returns true on success, otherwise false.

API Level: 3
View Source

TryGetValue(String, out Double)

Gets the double value of the feature.

Declaration
C#
Copy
public static bool TryGetValue(string key, out double value)
Parameters
Type Name Description
String key

The name of the feature.

Double value

The value of the given feature.

Returns
Type Description
Boolean

Returns true on success, otherwise false.

API Level: 3
View Source

TryGetValue(String, out Int32)

Gets the int value of the feature.

Declaration
C#
Copy
public static bool TryGetValue(string key, out int value)
Parameters
Type Name Description
String key

The name of the feature.

Int32 value

The value of the given feature.

Returns
Type Description
Boolean

Returns true on success, otherwise false.

API Level: 3
View Source

TryGetValue(String, out String)

Gets the string value of the feature.

Declaration
C#
Copy
public static bool TryGetValue(string key, out string value)
Parameters
Type Name Description
String key

The name of the feature.

String value

The value of the given feature.

Returns
Type Description
Boolean

Returns true on success, otherwise false.

API Level: 3
View Source

TryGetValue<T>(String, out T)

Gets the value of the feature.

Declaration
C#
Copy
public static bool TryGetValue<T>(string key, out T value)
Parameters
Type Name Description
String key

The name of the feature.

T value

The value of the given feature.

Returns
Type Description
Boolean

Returns true on success, otherwise false.

Type Parameters
Name Description
T

Type of key value.

API Level: 3