C# 클래스 SoftCircuits.WinSettings.Setting

Represents a single setting for -derived classes.
파일 보기 프로젝트 열기: SoftCircuits/WinSettings

공개 메소드들

메소드 설명
GetValue ( ) : object?

Gets the value of this setting.

GetValueAsString ( ) : string

Gets this setting's value as a string.

SetValue ( object value ) : void

Sets the value of this setting.

SetValueFromString ( string value ) : void

Sets this setting's value from a string.

Setting ( SoftCircuits.WinSettings.Settings settings, PropertyInfo propertyInfo, bool encrypted ) : System

Constructs a new instance of the class.

메소드 상세

GetValue() 공개 메소드

Gets the value of this setting.
public GetValue ( ) : object?
리턴 object?

GetValueAsString() 공개 메소드

Gets this setting's value as a string.
public GetValueAsString ( ) : string
리턴 string

SetValue() 공개 메소드

Sets the value of this setting.
public SetValue ( object value ) : void
value object The value this setting should be set to.
리턴 void

SetValueFromString() 공개 메소드

Sets this setting's value from a string.
public SetValueFromString ( string value ) : void
value string A string that represents the value this setting should be set to.
리턴 void

Setting() 공개 메소드

Constructs a new instance of the class.
public Setting ( SoftCircuits.WinSettings.Settings settings, PropertyInfo propertyInfo, bool encrypted ) : System
settings SoftCircuits.WinSettings.Settings The class that contains /// this property (setting).
propertyInfo PropertyInfo The for this /// property.
encrypted bool Indicates whether or not this setting is /// encrypted.
리턴 System