sharedlibrarycoreinterfaces IConfigurationHandlerFactory - RaidMax/IW4M-Admin GitHub Wiki
IConfigurationHandlerFactory Public interface
Description
defines the capabilities of the configuration handler factory used to generate new instance of configuration handlers
Diagram
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IConfigurationHandlerFactory[IConfigurationHandlerFactory](/RaidMax/IW4M-Admin/wiki/IConfigurationHandlerFactory)
class SharedLibraryCore.Interfaces.IConfigurationHandlerFactory interfaceStyle;
end
Members
Methods
Public methods
| Returns | Name |
|---|---|
IConfigurationHandler<T> |
GetConfigurationHandler(string name) |
Task<IConfigurationHandler<T>> |
GetConfigurationHandlerAsync(string name) |
Details
Summary
defines the capabilities of the configuration handler factory used to generate new instance of configuration handlers
Methods
GetConfigurationHandler
public IConfigurationHandler<T> GetConfigurationHandler<T>(string name)
where T : IBaseConfiguration
Arguments
| Type | Name | Description |
|---|---|---|
string |
name |
GetConfigurationHandlerAsync
public Task<IConfigurationHandler<T>> GetConfigurationHandlerAsync<T>(string name)
where T : IBaseConfiguration
Arguments
| Type | Name | Description |
|---|---|---|
string |
name |
Generated with ModularDoc