14 lines
406 B
C#
14 lines
406 B
C#
// See https://aka.ms/new-console-template for more information
|
|
using RemoteFrameBuffer;
|
|
using RemoteFrameBuffer.Client;
|
|
using System.Net;
|
|
|
|
IPAddress tessia = new([192,168,16,253]);
|
|
|
|
IRemoteFrameBufferClientStreamProvider tessia6001vnc = new RemoteFrameBufferTcpClientStreamProvider(tessia, 5901);
|
|
RemoteFramebufferClient client = new(tessia6001vnc);
|
|
|
|
client.Start();
|
|
Console.ReadLine();
|
|
client.Stop();
|