C# 클래스 VLC.Helpers.ApplicationSettingsHelper

파일 보기 프로젝트 열기: syaifulnizamyahya/vlc-winrt

공개 메소드들

메소드 설명
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