예제 #1
0
파일: Hub.cs 프로젝트: ubberkid/PeerATT
 /// <summary>
 /// Registers a callback function to the given method.
 /// </summary>
 public void On(string method, OnMethodCallCallbackDelegate callback)
 {
     MethodTable[method] = callback;
 }
예제 #2
0
 /// <summary>
 /// Registers a callback function to the given method.
 /// </summary>
 public void On(string method, OnMethodCallCallbackDelegate callback)
 {
     MethodTable[method] = callback;
 }
예제 #3
0
	public void AddListener(string method, OnMethodCallCallbackDelegate callback)
	{
		_hub.On(method, callback);
	}