C# 클래스 BF2Statistics.ServerSettings

파일 보기 프로젝트 열기: BF2Statistics/ControlCenter 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
Items string>.Dictionary

공개 메소드들

메소드 설명
GetValue ( string Name ) : string

Method for returning the string value of a settings item

GetValue ( string Name, string DefaultValue ) : string

Method for returning the string value of a settings item

ItemCount ( ) : int

Returns the number of found settings

Save ( ) : void

Saves the current settings to the Server Settings file

ServerSettings ( string FileName ) : System

Constructor

SetValue ( string Name, string Value ) : void

Sets the value for a settings item

메소드 상세

GetValue() 공개 메소드

Method for returning the string value of a settings item
Thrown if the named item doesnt exist
public GetValue ( string Name ) : string
Name string The name of the config item
리턴 string

GetValue() 공개 메소드

Method for returning the string value of a settings item
public GetValue ( string Name, string DefaultValue ) : string
Name string The name of the config item
DefaultValue string The default value to return if the item doesnt exist
리턴 string

ItemCount() 공개 메소드

Returns the number of found settings
public ItemCount ( ) : int
리턴 int

Save() 공개 메소드

Saves the current settings to the Server Settings file
public Save ( ) : void
리턴 void

ServerSettings() 공개 메소드

Constructor
public ServerSettings ( string FileName ) : System
FileName string The full path to the settings.con file
리턴 System

SetValue() 공개 메소드

Sets the value for a settings item
public SetValue ( string Name, string Value ) : void
Name string Item Name
Value string String value of the item
리턴 void

프로퍼티 상세

Items 보호되어 있는 프로퍼티

A list of config items
protected Dictionary Items
리턴 string>.Dictionary