/// <summary>
 /// Handles the encode completed event of the Terminology Manager.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EncodeConceptCompletedEventArgs"/> instance containing the event data.</param>
 private void TerminologyManagerEncodeConceptCompleted(object sender, EncodeConceptCompletedEventArgs e)
 {
     if (e.Successful)
     {
         this.StatusText.Text = string.Empty;
         this.EncodeOutput(e.EncodedConcept);
     }
     else
     {
         this.StatusText.Text = NoMatchesFoundDueToErrorText;
         this.EncodeOutput(SingleConceptMatchingPage.CreateUnencodedConcept(this.SingleConceptMatching.InputBoxText));
     }
 }