mirror of
https://github.com/snltty/linker.git
synced 2025-10-28 03:13:15 +08:00
25 lines
473 B
C#
25 lines
473 B
C#
using System.Net;
|
|
|
|
namespace cmonitor.plugins.viewer.report
|
|
{
|
|
public sealed class ViewerLinux : IViewer
|
|
{
|
|
public void Open(bool value, ParamInfo info)
|
|
{
|
|
}
|
|
public string GetConnectString()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
public void SetConnectString(string connectStr)
|
|
{
|
|
|
|
}
|
|
|
|
public IPEndPoint GetConnectEP(string connectStr)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|