Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Result / ReplacementText.cs / 1 / ReplacementText.cs
//------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------- using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Speech.Internal.SapiInterop; using System.Speech.Internal.SrgsCompiler; using System.Speech.Internal.SrgsParser; using System.Text; using System.Xml; using System.Xml.XPath; namespace System.Speech.Recognition { ////// TODOC /// [Serializable] [StructLayout (LayoutKind.Sequential)] public class ReplacementText { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors internal ReplacementText (DisplayAttributes displayAttributes, string text, int wordIndex, int countOfWords) { _displayAttributes = displayAttributes; _text = text; _wordIndex = wordIndex; _countOfWords = countOfWords; } #endregion //******************************************************************** // // Public Properties // //******************************************************************* #region Public Properties ////// TODOC /// public DisplayAttributes DisplayAttributes { get { return _displayAttributes; } } ////// TODOC /// public string Text { get { return _text; } } ////// TODOC /// public int FirstWordIndex { get { return _wordIndex; } } ////// TODOC /// public int CountOfWords { get { return _countOfWords; } } #endregion //******************************************************************** // // Private Fields // //******************************************************************** #region Private Fields private DisplayAttributes _displayAttributes; private string _text; private int _wordIndex; private int _countOfWords; #endregion } } // 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
- BoolExpr.cs
- PrivilegedConfigurationManager.cs
- SqlProcedureAttribute.cs
- LinkUtilities.cs
- ThreadInterruptedException.cs
- AcceleratedTokenAuthenticator.cs
- InputReport.cs
- RayHitTestParameters.cs
- ListParaClient.cs
- StrokeCollection2.cs
- UnsafeNativeMethods.cs
- CollectionBuilder.cs
- HashUtility.cs
- SmtpReplyReader.cs
- TempFiles.cs
- login.cs
- SynchronizedInputHelper.cs
- StatusBar.cs
- SqlDataSourceFilteringEventArgs.cs
- Profiler.cs
- MemberHolder.cs
- CustomTokenProvider.cs
- ColumnBinding.cs
- ListControlConvertEventArgs.cs
- WebReferencesBuildProvider.cs
- ObjectPersistData.cs
- TextElement.cs
- UndirectedGraph.cs
- ACL.cs
- OleDbDataAdapter.cs
- ToolStripSystemRenderer.cs
- XhtmlBasicValidatorAdapter.cs
- AmbiguousMatchException.cs
- OdbcError.cs
- URI.cs
- HintTextConverter.cs
- DataGridViewCheckBoxCell.cs
- CollectionCodeDomSerializer.cs
- ScriptRegistrationManager.cs
- InvalidOleVariantTypeException.cs
- selecteditemcollection.cs
- CacheManager.cs
- HostProtectionException.cs
- NullableConverter.cs
- BooleanKeyFrameCollection.cs
- RangeValuePatternIdentifiers.cs
- ToolStripHighContrastRenderer.cs
- PerfService.cs
- SecurityRuntime.cs
- WebProxyScriptElement.cs
- Invariant.cs
- DataPagerCommandEventArgs.cs
- Pens.cs
- BasicCellRelation.cs
- ConvertEvent.cs
- ServerValidateEventArgs.cs
- CqlLexer.cs
- KeyedPriorityQueue.cs
- APCustomTypeDescriptor.cs
- SynchronizationContext.cs
- PointCollectionConverter.cs
- ElementMarkupObject.cs
- ScrollableControl.cs
- ModelItemDictionaryImpl.cs
- dsa.cs
- FacetChecker.cs
- NeutralResourcesLanguageAttribute.cs
- LinkConverter.cs
- Cursors.cs
- followingquery.cs
- ValidationRule.cs
- ZoneIdentityPermission.cs
- TextEffectCollection.cs
- TextBox.cs
- DBBindings.cs
- UIElementParagraph.cs
- BinaryUtilClasses.cs
- HttpCookie.cs
- Matrix.cs
- Clock.cs
- Pen.cs
- TemplateParser.cs
- PassportIdentity.cs
- PenContexts.cs
- ImageFormat.cs
- OleDbInfoMessageEvent.cs
- PartialClassGenerationTask.cs
- XPathSingletonIterator.cs
- ResourceDescriptionAttribute.cs
- SpellerInterop.cs
- WebPartEditorApplyVerb.cs
- NullableBoolConverter.cs
- BulletedList.cs
- EntityTemplateFactory.cs
- XmlNotation.cs
- QuadraticBezierSegment.cs
- CollectionView.cs
- ComboBoxItem.cs
- FileLoadException.cs
- WriteTimeStream.cs