Exemplo n.º 1
0
 /// <summary>
 /// Registers a callback function to the given method.
 /// </summary>
 public void On(string method, OnMethodCallCallbackDelegate callback)
 {
     MethodTable[method] = callback;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Registers a callback function to the given method.
 /// </summary>
 public void On(string method, OnMethodCallCallbackDelegate callback)
 {
     MethodTable[method] = callback;
 }
Exemplo n.º 3
0
	public void AddListener(string method, OnMethodCallCallbackDelegate callback)
	{
		_hub.On(method, callback);
	}