C# Класс VLC.Helpers.ApplicationSettingsHelper

Показать файл Открыть проект

Открытые методы

Метод Описание
Contains ( string key, bool localSettings = true ) : bool

Function that checks if the entry exists in Application settings

ReadResetSettingsValue ( string key, bool localSettings = true ) : object

Function to read a setting value and clear it after reading it

ReadSettingsValue ( string key, bool localSettings = true ) : object

Function to read a setting value

SaveSettingsValue ( string key, object value, bool localSettings = true ) : void

Save a key value pair in settings. Create if it doesn't exist

Описание методов

Contains() публичный статический Метод

Function that checks if the entry exists in Application settings
public static Contains ( string key, bool localSettings = true ) : bool
key string
localSettings bool
Результат bool

ReadResetSettingsValue() публичный статический Метод

Function to read a setting value and clear it after reading it
public static ReadResetSettingsValue ( string key, bool localSettings = true ) : object
key string
localSettings bool
Результат object

ReadSettingsValue() публичный статический Метод

Function to read a setting value
public static ReadSettingsValue ( string key, bool localSettings = true ) : object
key string
localSettings bool
Результат object

SaveSettingsValue() публичный статический Метод

Save a key value pair in settings. Create if it doesn't exist
public static SaveSettingsValue ( string key, object value, bool localSettings = true ) : void
key string
value object
localSettings bool
Результат void