Exemplo n.º 1
0
 protected void RaiseEvent(DataLinkEventArg e)
 {
     if (OnDataReceive != null)
     {
         OnDataReceive(this, e);
     }
 }
Exemplo n.º 2
0
 protected virtual void ProcessDataLinkEvent(DataLinkEventArg e)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 private void DataLink_OnDataReceive(object sender, DataLinkEventArg e)
 {
     ProcessDataLinkEvent(e);
 }