IPluginFactoryGetInstancesT Method |
Gets the plugins of specified type.
Namespace:
Atomia.Billing.Core.Sdk.Plugins
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax List<T> GetInstances<T>(
IAtomiaBillingApi atomiaBillingApi
)
where T : class, IPlugin
Function GetInstances(Of T As {Class, IPlugin}) (
atomiaBillingApi As IAtomiaBillingApi
) As List(Of T)
generic<typename T>
where T : ref class, IPlugin
List<T>^ GetInstances(
IAtomiaBillingApi^ atomiaBillingApi
)
abstract GetInstances :
atomiaBillingApi : IAtomiaBillingApi -> List<'T> when 'T : not struct and IPlugin
Parameters
- atomiaBillingApi
- Type: Atomia.Billing.Core.SdkIAtomiaBillingApi
The Atomia Billing API instance.
Type Parameters
- T
- Type which plugins we need to instantiate.
Return Value
Type:
ListTList of plugin instances.
See Also