Beispiel #1
0
        /// <summary>Raises the RLVRuleChanged event</summary>
        /// <param name="e">An RLVRuleChangedEventArgs object containing the
        /// data returned from the data server</param>
        protected virtual void OnRLVRuleChanged(RLVEventArgs e)
        {
            EventHandler <RLVEventArgs> handler = m_RLVRuleChanged;

            try
            {
                handler?.Invoke(this, e);
            }
            catch (Exception) { }
        }
Beispiel #2
0
        /// <summary>Raises the RLVRuleChanged event</summary>
        /// <param name="e">An RLVRuleChangedEventArgs object containing the
        /// data returned from the data server</param>
        protected virtual void OnRLVRuleChanged(RLVEventArgs e)
        {
            EventHandler<RLVEventArgs> handler = m_RLVRuleChanged;
            try
            {
                if (handler != null)
                    handler(this, e);
            }
            catch (Exception) { }

        }
 /// <summary>Raises the RLVRuleChanged event</summary>
 /// <param name="e">An RLVRuleChangedEventArgs object containing the
 /// data returned from the data server</param>
 protected virtual void OnRLVRuleChanged(RLVEventArgs e)
 {
     EventHandler<RLVEventArgs> handler = m_RLVRuleChanged;
     try
     {
         if (handler != null)
             handler(this, e);
     }
     catch (Exception) { }
 }