ctrlX Data Layer .NET API  4.3.0
Loading...
Searching...
No Matches
IFactory.cs
1using System;
2
3namespace Datalayer
4{
8 public interface IFactory : INativeDisposable
9 {
17 IClient CreateClient(string remote);
18
26 IProvider CreateProvider(string remote);
27 }
28}
The IClient interface.
Definition: IClient.cs:10
The IFactory interface.
Definition: IFactory.cs:9
IClient CreateClient(string remote)
Creates a ctrlX Data Layer client and connects. Automatically reconnects if the connection is interru...
IProvider CreateProvider(string remote)
Creates a ctrlX Data Layer provider and connects. Automatically reconnects if the connection is inter...
The INativeDisposable interface.
The IProvider interface.
Definition: IProvider.cs:9