Exemplo n.º 1
0
 protected virtual void OnReceiveSetData(SetData setData)
 {
     Action<SetData> handler = this.ReceiveSetData;
     if (handler != null) handler(setData);
 }
Exemplo n.º 2
0
 private void OnSendSetData(SetData setData)
 {
     Action<SetData> handler = this.SendSetData;
     if (handler != null) handler(setData);
 }
Exemplo n.º 3
0
 internal void DoReceiveSetData(SetData data)
 {
     this.OnReceiveSetData(data);
 }