C# Класс BF2Statistics.ServerSettings

Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
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