Interface IConnectorFactory
Namespace: LemonEdge.API.Client.CommonUI
Assembly: LemonEdge.API.dll
Syntax
public interface IConnectorFactory
Properties
FactoryTypes
A list of the connection types supported by the current providers.
Declaration
IEnumerable<ConnectionType> FactoryTypes { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<ConnectionType> |
Methods
Create(ConnectionType)
Creates a connector based on the type and the connection settings
Declaration
IConnector Create(ConnectionType connectionType)
Parameters
| Type | Name | Description |
|---|---|---|
| ConnectionType | connectionType | The ConnectionType to use. |
Returns
| Type | Description |
|---|---|
| IConnector |
GetCurrent()
Gets the last created connector
Declaration
IConnector GetCurrent()
Returns
| Type | Description |
|---|---|
| IConnector |