-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IConfigurationHandlerFactory
RaidMax edited this page May 21, 2023
·
1 revision
defines the capabilities of the configuration handler factory used to generate new instance of configuration handlers
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IConfigurationHandlerFactory[[IConfigurationHandlerFactory]]
class SharedLibraryCore.Interfaces.IConfigurationHandlerFactory interfaceStyle;
end
Returns | Name |
---|---|
IConfigurationHandler <T > |
GetConfigurationHandler (string name) |
Task <IConfigurationHandler <T >> |
GetConfigurationHandlerAsync (string name) |
defines the capabilities of the configuration handler factory used to generate new instance of configuration handlers
public IConfigurationHandler<T> GetConfigurationHandler<T>(string name)
where T : IBaseConfiguration
Type | Name | Description |
---|---|---|
string |
name |
public Task<IConfigurationHandler<T>> GetConfigurationHandlerAsync<T>(string name)
where T : IBaseConfiguration
Type | Name | Description |
---|---|---|
string |
name |
Generated with ModularDoc