IListener

Overview

IListener is a generic network listener interface. The default implementation provides facilities for listening on a server socket.

Location

  • Reference: RemObjects.SDK.Server.dll
  • Namespace: RemObjects.SDK.Server
  • Platforms: .NET Core, .NET Framework, .NET Standard


Properties


ListeningSocket

Represents the socket which is listened for an incoming connection.

 

property ListeningSocket: Socket read write;

 

Socket ListeningSocket { get; set; }

 

Property ListeningSocket() As Socket

Required Methods


Listen

Start listening for incoming connections.

 

method Listen

 

void Listen()

 

Sub Listen()