SettingsStore.GetInt32 Method

Definition

Overloads

GetInt32(String, String)

Returns the value of the requested property whose data type is Int32.

GetInt32(String, String, Int32)

Returns the value of the requested property whose data type is Int32.

GetInt32(String, String)

Returns the value of the requested property whose data type is Int32.

public:
 abstract int GetInt32(System::String ^ collectionPath, System::String ^ propertyName);
public:
 abstract int GetInt32(Platform::String ^ collectionPath, Platform::String ^ propertyName);
 abstract int GetInt32(std::wstring const & collectionPath, std::wstring const & propertyName);
public abstract int GetInt32 (string collectionPath, string propertyName);
abstract member GetInt32 : string * string -> int
Public MustOverride Function GetInt32 (collectionPath As String, propertyName As String) As Integer

Parameters

collectionPath
String

Path of the collection of the property.

propertyName
String

Name of the property.

Returns

Value of the property. If the value was stored as an unsigned integer previously then regular type conversion sematics applies.

Exceptions

Throws this exception if the property is of different type or if it does not exist.

Applies to

GetInt32(String, String, Int32)

Returns the value of the requested property whose data type is Int32.

public:
 abstract int GetInt32(System::String ^ collectionPath, System::String ^ propertyName, int defaultValue);
public:
 abstract int GetInt32(Platform::String ^ collectionPath, Platform::String ^ propertyName, int defaultValue);
 abstract int GetInt32(std::wstring const & collectionPath, std::wstring const & propertyName, int defaultValue);
public abstract int GetInt32 (string collectionPath, string propertyName, int defaultValue);
abstract member GetInt32 : string * string * int -> int
Public MustOverride Function GetInt32 (collectionPath As String, propertyName As String, defaultValue As Integer) As Integer

Parameters

collectionPath
String

Path of the collection of the property.

propertyName
String

Name of the property.

defaultValue
Int32

Value to be returned if the property does not exist.

Returns

If the property does not exist, it returns the defaultValue passed in. If the value was stored as an unsigned integer previously then regular type conversion sematics applies.

Exceptions

Throws this exception if the property is of different type.

Applies to