-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycoreconfiguration ServerConfiguration
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Configuration
SharedLibraryCore.Configuration.ServerConfiguration[[ServerConfiguration]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IBaseConfiguration[[IBaseConfiguration]]
class SharedLibraryCore.Interfaces.IBaseConfiguration interfaceStyle;
end
SharedLibraryCore.Interfaces.IBaseConfiguration --> SharedLibraryCore.Configuration.ServerConfiguration
| Type | Name | Methods |
|---|---|---|
string``[] |
AutoMessages |
get, set |
string |
CustomHostname |
get, set |
string |
EventParserVersion |
get, set |
Uri |
GameLogServerUrl |
get, set |
string |
IPAddress |
get, set |
string |
ManualLogPath |
get, set |
string |
Password |
get, set |
string |
PerformanceBucket |
get, set |
int |
Port |
get, set |
string |
RConParserVersion |
get, set |
int |
ReservedSlotNumber |
get, set |
string``[] |
Rules |
get, set |
| Returns | Name |
|---|---|
void |
AddEventParser(IEventParser parser) |
void |
AddRConParser(IRConParser parser) |
IBaseConfiguration |
Generate() |
void |
ModifyParsers() |
string |
Name() |
public ServerConfiguration()public virtual IBaseConfiguration Generate()public virtual string Name()public void AddRConParser(IRConParser parser)| Type | Name | Description |
|---|---|---|
IRConParser |
parser |
public void AddEventParser(IEventParser parser)| Type | Name | Description |
|---|---|---|
IEventParser |
parser |
public void ModifyParsers()public string IPAddress { get; set; }public int Port { get; set; }public string Password { get; set; }public string Rules { get; set; }public string AutoMessages { get; set; }public string ManualLogPath { get; set; }public string RConParserVersion { get; set; }public string EventParserVersion { get; set; }public int ReservedSlotNumber { get; set; }public Uri GameLogServerUrl { get; set; }public string CustomHostname { get; set; }public string PerformanceBucket { get; set; }Generated with ModularDoc