C# Class SocketIOClient.Messages.EventMessage

Inheritance: Message
Show file Open project: uken/UnitySocketIO-WebSocketSharp Class Usage Examples

Public Properties

Property Type Description
Callback Action

Private Properties

Property Type Description

Public Methods

Method Description
Deserialize ( string rawMessage ) : EventMessage
EventMessage ( ) : System
EventMessage ( string eventName, object jsonObject, string endpoint, Action callBack ) : System

Method Details

Deserialize() public static method

public static Deserialize ( string rawMessage ) : EventMessage
rawMessage string
return EventMessage

EventMessage() public method

public EventMessage ( ) : System
return System

EventMessage() public method

public EventMessage ( string eventName, object jsonObject, string endpoint, Action callBack ) : System
eventName string
jsonObject object
endpoint string
callBack Action
return System

Property Details

Callback public property

public Action Callback
return Action