protected void RaiseEvent(DataLinkEventArg e) { if (OnDataReceive != null) { OnDataReceive(this, e); } }
protected virtual void ProcessDataLinkEvent(DataLinkEventArg e) { throw new NotImplementedException(); }
private void DataLink_OnDataReceive(object sender, DataLinkEventArg e) { ProcessDataLinkEvent(e); }