Shadow Network Framework  0.0.2-alpha
.NET Client Library for Shadow Network Framework
Loading...
Searching...
No Matches
SNFClient.Callbacks Namespace Reference

Defines The Callbacks need for Event Handling. More...

Functions

delegate void SimpleCB ()
 Used for Events that Requires no Arguments.
 
delegate void ExceptionCB (Exception ex)
 Used for Handling Any unhandled Exception.
 
delegate void SocketExceptionCB (SocketException ex)
 Used For Handling any Exception that happend during The Connection to The Host.
 
delegate void RequestCB (Request Response)
 Used for handling Incoming requests Either Response or Server.
 

Detailed Description

Defines The Callbacks need for Event Handling.

Function Documentation

◆ SimpleCB()

delegate void SNFClient.Callbacks.SimpleCB ( )

Used for Events that Requires no Arguments.

◆ ExceptionCB()

delegate void SNFClient.Callbacks.ExceptionCB ( Exception ex)

Used for Handling Any unhandled Exception.

Parameters
exThe Unknown Exception

◆ SocketExceptionCB()

delegate void SNFClient.Callbacks.SocketExceptionCB ( SocketException ex)

Used For Handling any Exception that happend during The Connection to The Host.

Parameters
exSocket Exception

◆ RequestCB()

delegate void SNFClient.Callbacks.RequestCB ( Request Response)

Used for handling Incoming requests Either Response or Server.

Parameters
ResponseThe Server's Request (Response or not)