Beispiel #1
0
        protected virtual void OnCompletionSessionCommitted(object sender, EventArgs eventArgs)
        {
            if (CompletionCommitted != null)
            {
                CompletionCommittedEventArgs committedEventArgs = new CompletionCommittedEventArgs();
                committedEventArgs.Session = CompletionSession;

                CompletionCommitted(this, committedEventArgs);
            }

            ClearCompletionSession();
        }
        protected virtual void OnCompletionSessionCommitted(object sender, EventArgs eventArgs) {
            if (CompletionCommitted != null) {
                CompletionCommittedEventArgs committedEventArgs = new CompletionCommittedEventArgs();
                committedEventArgs.Session = CompletionSession;

                CompletionCommitted(this, committedEventArgs);
            }

            ClearCompletionSession();
        }