SpeechUI.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Recognition / SpeechUI.cs / 1 / SpeechUI.cs

                            //------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------- 

#if !SPEECHSERVER 
 
using System.Speech.Internal;
 
namespace System.Speech.Recognition
{
    /// TODOC <_include file='doc\SpeechUI.uex' path='docs/doc[@for="SpeechUI"]/*' />
    public class SpeechUI 
    {
        internal SpeechUI() 
        { 
        }
 
        /// TODOC <_include file='doc\SpeechUI.uex' path='docs/doc[@for="SpeechUI.SendTextFeedback"]/*' />
        public static bool SendTextFeedback(RecognitionResult result, string feedback, bool isSuccessfulAction)
        {
            Helpers.ThrowIfNull (result,  "result"); 
            Helpers.ThrowIfEmptyOrNull (feedback, "feedback");
 
            return result.SetTextFeedback(feedback, isSuccessfulAction); 
      }
    } 
}
#endif

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK