67 lines
1.3 KiB
C#
Raw Normal View History

2022-05-10 13:35:23 +02:00
using FabAccessAPI.Schema;
using System;
namespace FabAccessAPI
{
public class API : IAPI
{
#region Private Members
#endregion
#region Constructors
public API()
{
}
#endregion
2022-05-10 23:50:04 +02:00
2022-05-10 13:35:23 +02:00
#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
}
}