Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Result / RecognizedWordUnit.cs / 1 / RecognizedWordUnit.cs
//------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------- using System; using System.Diagnostics; using System.Speech.Internal; #pragma warning disable 1634, 1691 // Allows suppression of certain PreSharp messages. namespace System.Speech.Recognition { /// TODOC <_include file='doc\RecognitionResult.uex' path='docs/doc[@for="RecognizedWordUnit"]/*' /> [Serializable] [DebuggerDisplay ("Text: {Text}")] public class RecognizedWordUnit { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors #pragma warning disable 6504 #pragma warning disable 6507 // Constructor for recognized 'word' /// TODOC <_include file='doc\RecognitionResult.uex' path='docs/doc[@for="RecognizedWordUnit.ctor"]/*' /> public RecognizedWordUnit (string text, float confidence, string pronunciation, string lexicalForm, DisplayAttributes displayAttributes, TimeSpan audioPosition, TimeSpan audioDuration) { if (lexicalForm == null) { throw new ArgumentNullException ("lexicalForm"); } if (confidence < 0.0f || confidence > 1.0f) { throw new ArgumentOutOfRangeException (SR.Get (SRID.InvalidConfidence)); } _text = text == null || text.Length == 0 ? null : text; _confidence = confidence; _pronunciation = pronunciation == null || pronunciation.Length == 0 ? null : pronunciation; _lexicalForm = lexicalForm; _displayAttributes = displayAttributes; _audioPosition = audioPosition; _audioDuration = audioDuration; } #pragma warning restore 6504 #pragma warning restore 6507 #endregion //******************************************************************** // // Public Properties // //******************************************************************* #region Public Properties // Spoken text of the word {No conversion to display form} /// TODOC <_include file='doc\RecognitionResult.uex' path='docs/doc[@for="RecognizedWordUnit.Text"]/*' /> public string Text { get { return _text; } } // Confidence score /// TODOC <_include file='doc\RecognitionResult.uex' path='docs/doc[@for="RecognizedWordUnit.Confidence"]/*' /> public float Confidence { get { return _confidence; } } /// TODOC <_include file='doc\RecognitionResult.uex' path='docs/doc[@for="RecognizedWordUnit.PronunciationString"]/*' /> public string Pronunciation { get { return _pronunciation; } } ////// TODOC /// public string LexicalForm { get { return _lexicalForm; } } ////// TODOC /// public DisplayAttributes DisplayAttributes { get { return _displayAttributes; } } #endregion //******************************************************************** // // Internal Methods // //******************************************************************** #region Internal Methods internal static byte DisplayAttributesToSapiAttributes (DisplayAttributes displayAttributes) { return (byte) ((uint) displayAttributes >> 1); } internal static DisplayAttributes SapiAttributesToDisplayAttributes (byte sapiAttributes) { return (DisplayAttributes) (sapiAttributes << 1); } #endregion //******************************************************************* // // Internal Fields // //******************************************************************** #region Internal Fields internal TimeSpan _audioPosition; internal TimeSpan _audioDuration; #endregion //******************************************************************* // // Private Fields // //******************************************************************* #region Private Fields private string _text; private string _lexicalForm; private float _confidence; private string _pronunciation; private DisplayAttributes _displayAttributes; #endregion } /// TODOC [Flags] public enum DisplayAttributes { /// TODOC None = 0x00, /// TODOC ZeroTrailingSpaces = 0x02, /// TODOC OneTrailingSpace = 0x04, /// TODOC TwoTrailingSpaces = 0x08, /// TODOC ConsumeLeadingSpaces = 0x10, } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExpressionVisitor.cs
- EffectiveValueEntry.cs
- BitmapSourceSafeMILHandle.cs
- CreateUserWizardStep.cs
- XmlCountingReader.cs
- HwndHostAutomationPeer.cs
- LocalizationComments.cs
- LinkedList.cs
- TextBoxBase.cs
- QuadraticBezierSegment.cs
- smtpconnection.cs
- Point4D.cs
- XamlStream.cs
- DataGridViewRowPrePaintEventArgs.cs
- CollectionChangedEventManager.cs
- ListBoxItemAutomationPeer.cs
- MoveSizeWinEventHandler.cs
- TraceContext.cs
- DependencyProperty.cs
- MultilineStringEditor.cs
- EnglishPluralizationService.cs
- WebServiceClientProxyGenerator.cs
- SubqueryRules.cs
- XmlConvert.cs
- CompilerTypeWithParams.cs
- TrustLevelCollection.cs
- PropertyItem.cs
- TextSelectionHighlightLayer.cs
- AsymmetricCryptoHandle.cs
- HttpEncoder.cs
- DBSchemaTable.cs
- ElementProxy.cs
- ListDesigner.cs
- DisplayMemberTemplateSelector.cs
- ISessionStateStore.cs
- SemanticBasicElement.cs
- Converter.cs
- WizardStepBase.cs
- Function.cs
- FileVersion.cs
- DataServiceRequestArgs.cs
- TreeNodeSelectionProcessor.cs
- DetailsViewDesigner.cs
- IntranetCredentialPolicy.cs
- Int32RectConverter.cs
- Parser.cs
- DataKeyCollection.cs
- MouseButtonEventArgs.cs
- SiteMapPath.cs
- AdRotator.cs
- DiagnosticTraceSource.cs
- DockPattern.cs
- PackageDigitalSignatureManager.cs
- UInt16Storage.cs
- ImageUrlEditor.cs
- HuffmanTree.cs
- LinkButton.cs
- Variant.cs
- elementinformation.cs
- ListViewAutomationPeer.cs
- ProcessThreadCollection.cs
- GeometryGroup.cs
- CryptoStream.cs
- ObservableCollection.cs
- InfoCardTraceRecord.cs
- AutomationProperties.cs
- UpdatePanel.cs
- PenThreadPool.cs
- Keywords.cs
- DataGridViewTopLeftHeaderCell.cs
- TreeNode.cs
- SoapReflector.cs
- XamlFrame.cs
- EntityWithKeyStrategy.cs
- XpsLiterals.cs
- SqlCacheDependencySection.cs
- XmlILModule.cs
- IncrementalHitTester.cs
- DbConnectionPoolOptions.cs
- EventLogEntry.cs
- Brush.cs
- DataSourceCacheDurationConverter.cs
- TemplatePartAttribute.cs
- RuleDefinitions.cs
- MachinePropertyVariants.cs
- GeneralEndpointIdentity.cs
- DSACryptoServiceProvider.cs
- EntityDataSourceMemberPath.cs
- GridEntryCollection.cs
- RemoteWebConfigurationHostStream.cs
- XamlRtfConverter.cs
- Tuple.cs
- BaseParaClient.cs
- FakeModelPropertyImpl.cs
- PerformanceCounterManager.cs
- CookielessData.cs
- GCHandleCookieTable.cs
- SvcMapFileLoader.cs
- MarginsConverter.cs
- Style.cs