-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IScriptPluginServiceResolver
RaidMax edited this page May 21, 2023
·
1 revision
interface used to dynamically resolve services by string name
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IScriptPluginServiceResolver[[IScriptPluginServiceResolver]]
class SharedLibraryCore.Interfaces.IScriptPluginServiceResolver interfaceStyle;
end
Returns | Name |
---|---|
object |
ResolveService (... )resolves a service with the given name |
interface used to dynamically resolve services by string name
public object ResolveService(string serviceName)
Type | Name | Description |
---|---|---|
string |
serviceName | class name of service |
resolves a service with the given name
public object ResolveService(string serviceName, string[] genericParameters)
Type | Name | Description |
---|---|---|
string |
serviceName | class name of service |
string``[] |
genericParameters | generic class names |
resolves a service with the given name and generic params
Generated with ModularDoc