1 sharedlibrarycoreinterfaces IConfigurationHandlerFactory
RaidMax edited this page 2023-05-20 22:09:21 -05:00

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]]
  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

Source code

public IConfigurationHandler<T> GetConfigurationHandler<T>(string name)
where T : IBaseConfiguration
Arguments
Type Name Description
string name

GetConfigurationHandlerAsync

Source code

public Task<IConfigurationHandler<T>> GetConfigurationHandlerAsync<T>(string name)
where T : IBaseConfiguration
Arguments
Type Name Description
string name

Generated with ModularDoc