Exemple #1
0
        private void OnChangedRaisedCore(WatcherEventArgs e)
        {
            EventHandler <WatcherEventArgs> handler = Changed;

            EventUtility.Raise(handler, this, e);
        }
        /// <summary>
        /// Raises the <see cref="Deleted"/> event.
        /// </summary>
        /// <param name="e">The <see cref="Cuemon.Data.DataAdapterEventArgs"/> instance containing the event data.</param>
        protected virtual void OnDeletedRaised(DataAdapterEventArgs e)
        {
            EventHandler <DataAdapterEventArgs> handler = Deleting;

            EventUtility.Raise(handler, this, e);
        }
Exemple #3
0
        /// <summary>
        /// Raises the <see cref="DependencyChanged"/> event.
        /// </summary>
        /// <param name="e">The <see cref="DependencyEventArgs"/> instance containing the event data.</param>
        protected virtual void OnDependencyChangedRaised(DependencyEventArgs e)
        {
            EventHandler <DependencyEventArgs> handler = DependencyChanged;

            EventUtility.Raise(handler, this, e);
        }
        /// <summary>
        /// Raises the <see cref="Updated"/> event.
        /// </summary>
        /// <param name="e">The <see cref="Cuemon.Data.DataAdapterEventArgs"/> instance containing the event data.</param>
        protected virtual void OnUpdatedRaised(DataAdapterEventArgs e)
        {
            EventHandler <DataAdapterEventArgs> handler = Updated;

            EventUtility.Raise(handler, this, e);
        }