C# Class Ultralight.ClientExtensions

Mostra file Open project: ernstnaezer/ultralight

Public Methods

Method Description
Connect ( this client ) : void

Sends a 'CONNECT' message

Send ( this client, string message, string destination ) : void

Sends a 'SEND' message

Subscribe ( this client, string destination ) : void

Sends a 'SUBSCRIBE' message

UnSubscribe ( this client, string destination ) : void

Sends an 'UNSUBSCRIBE' message

Method Details

Connect() public static method

Sends a 'CONNECT' message
public static Connect ( this client ) : void
client this
return void

Send() public static method

Sends a 'SEND' message
public static Send ( this client, string message, string destination ) : void
client this
message string
destination string
return void

Subscribe() public static method

Sends a 'SUBSCRIBE' message
public static Subscribe ( this client, string destination ) : void
client this
destination string
return void

UnSubscribe() public static method

Sends an 'UNSUBSCRIBE' message
public static UnSubscribe ( this client, string destination ) : void
client this
destination string
return void