mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
66 lines
1.3 KiB
C#
66 lines
1.3 KiB
C#
|
using FabAccessAPI.Schema;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace FabAccessAPI
|
|||
|
{
|
|||
|
public class API : IAPI
|
|||
|
{
|
|||
|
#region Private Members
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Constructors
|
|||
|
public API()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
#region Events
|
|||
|
public event EventHandler<ConnectionStatusChange> ConnectionStatusChanged;
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Members
|
|||
|
public ConnectionData ConnectionData { get; private set; }
|
|||
|
|
|||
|
public ConnectionInfo ConnectionInfo { get; private set; }
|
|||
|
|
|||
|
public bool IsConnected
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public Session Session
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Methods
|
|||
|
public void Connect(ConnectionData connectionData)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public void Disconnect()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public void Reconnect()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ConnectionInfo TestConnection(ConnectionData connectionData)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|