Mark van Renswoude
74985e45de
Some are silly, like the "member not used" for public interfaces. The comments everywhere are ugly, sorry, but it keeps the possibly important issues visible without a dependency on some ReSharper annotations package.
31 lines
698 B
C#
31 lines
698 B
C#
using System;
|
|
using Tapeti;
|
|
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
namespace Test
|
|
{
|
|
public class MyLogger : ILogger
|
|
{
|
|
public void Connect(TapetiConnectionParams connectionParams)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void ConnectFailed(TapetiConnectionParams connectionParams)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void ConnectSuccess(TapetiConnectionParams connectionParams)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void HandlerException(Exception e)
|
|
{
|
|
Console.WriteLine("Mylogger: " + e.Message);
|
|
}
|
|
}
|
|
}
|