Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Recognition / Choices.cs / 1 / Choices.cs
//------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------- using System.Collections.Generic; using System.Diagnostics; using System.Speech.Internal.GrammarBuilding; using System.Speech.Internal; namespace System.Speech.Recognition { ////// /// [DebuggerDisplay ("{_oneOf.DebugSummary}")] public class Choices { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors ////// /// public Choices () { } ////// /// /// public Choices (params string [] phrases) { Helpers.ThrowIfNull (phrases, "phrases"); Add (phrases); } ////// /// /// public Choices (params GrammarBuilder [] alternateChoices) { Helpers.ThrowIfNull (alternateChoices, "alternateChoices"); Add (alternateChoices); } #endregion //******************************************************************** // // Public Methods // //******************************************************************* #region Public Methods ////// /// /// public void Add (params string [] phrases) { Helpers.ThrowIfNull (phrases, "phrases"); foreach (string phrase in phrases) { Helpers.ThrowIfEmptyOrNull (phrase, "phrase"); _oneOf.Add (phrase); } } ////// /// /// public void Add (params GrammarBuilder [] alternateChoices) { Helpers.ThrowIfNull (alternateChoices, "alternateChoices"); foreach (GrammarBuilder alternateChoice in alternateChoices) { Helpers.ThrowIfNull (alternateChoice, "alternateChoice"); _oneOf.Items.Add (new ItemElement (alternateChoice)); } } ////// TODOC /// ///public GrammarBuilder ToGrammarBuilder () { return new GrammarBuilder (this); } #endregion //******************************************************************** // // Internal Properties // //******************************************************************** #region Internal Properties internal OneOfElement OneOf { get { return _oneOf; } } #endregion //******************************************************************* // // Private Fields // //******************************************************************** #region Private Fields private OneOfElement _oneOf = new OneOfElement (); #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------- using System.Collections.Generic; using System.Diagnostics; using System.Speech.Internal.GrammarBuilding; using System.Speech.Internal; namespace System.Speech.Recognition { ////// /// [DebuggerDisplay ("{_oneOf.DebugSummary}")] public class Choices { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors ////// /// public Choices () { } ////// /// /// public Choices (params string [] phrases) { Helpers.ThrowIfNull (phrases, "phrases"); Add (phrases); } ////// /// /// public Choices (params GrammarBuilder [] alternateChoices) { Helpers.ThrowIfNull (alternateChoices, "alternateChoices"); Add (alternateChoices); } #endregion //******************************************************************** // // Public Methods // //******************************************************************* #region Public Methods ////// /// /// public void Add (params string [] phrases) { Helpers.ThrowIfNull (phrases, "phrases"); foreach (string phrase in phrases) { Helpers.ThrowIfEmptyOrNull (phrase, "phrase"); _oneOf.Add (phrase); } } ////// /// /// public void Add (params GrammarBuilder [] alternateChoices) { Helpers.ThrowIfNull (alternateChoices, "alternateChoices"); foreach (GrammarBuilder alternateChoice in alternateChoices) { Helpers.ThrowIfNull (alternateChoice, "alternateChoice"); _oneOf.Items.Add (new ItemElement (alternateChoice)); } } ////// TODOC /// ///public GrammarBuilder ToGrammarBuilder () { return new GrammarBuilder (this); } #endregion //******************************************************************** // // Internal Properties // //******************************************************************** #region Internal Properties internal OneOfElement OneOf { get { return _oneOf; } } #endregion //******************************************************************* // // Private Fields // //******************************************************************** #region Private Fields private OneOfElement _oneOf = new OneOfElement (); #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QilGeneratorEnv.cs
- UrlPropertyAttribute.cs
- SchemaLookupTable.cs
- StateMachine.cs
- XamlGridLengthSerializer.cs
- Rect3D.cs
- ExtentCqlBlock.cs
- WasEndpointConfigContainer.cs
- DesignTimeParseData.cs
- IApplicationTrustManager.cs
- FormView.cs
- ColorAnimationUsingKeyFrames.cs
- SqlDataSourceEnumerator.cs
- CodeRemoveEventStatement.cs
- XmlDictionaryReaderQuotas.cs
- MethodRental.cs
- DecoratedNameAttribute.cs
- InfoCardKeyedHashAlgorithm.cs
- ThreadStartException.cs
- PasswordRecoveryDesigner.cs
- AttachedPropertyDescriptor.cs
- BlockUIContainer.cs
- ObjectQueryProvider.cs
- FontStretchConverter.cs
- ActivityValidator.cs
- WebPartTransformerCollection.cs
- ProtocolsSection.cs
- Exceptions.cs
- Visitor.cs
- ApplyImportsAction.cs
- AnimatedTypeHelpers.cs
- EventEntry.cs
- XmlCharCheckingReader.cs
- Grant.cs
- ImageListStreamer.cs
- SqlDataSourceCustomCommandEditor.cs
- RootBuilder.cs
- PointValueSerializer.cs
- CodeTypeDeclaration.cs
- StyleCollectionEditor.cs
- FormsIdentity.cs
- ConfigurationManagerInternal.cs
- OracleBinary.cs
- HighlightOverlayGlyph.cs
- HtmlToClrEventProxy.cs
- MemberAssignment.cs
- ToolStripDropDownButton.cs
- x509store.cs
- ComponentCommands.cs
- BinaryWriter.cs
- CodeThrowExceptionStatement.cs
- XNameConverter.cs
- BamlStream.cs
- CategoryState.cs
- StreamingContext.cs
- ProfileSettingsCollection.cs
- WebPartEditVerb.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- IndexOutOfRangeException.cs
- Cursors.cs
- CapiHashAlgorithm.cs
- MarshalDirectiveException.cs
- EnvironmentPermission.cs
- GiveFeedbackEventArgs.cs
- MarkupExtensionReturnTypeAttribute.cs
- SamlAudienceRestrictionCondition.cs
- OpenFileDialog.cs
- ObfuscationAttribute.cs
- DocumentXmlWriter.cs
- XmlDataContract.cs
- DelayDesigner.cs
- RegexMatchCollection.cs
- EntityDataSourceSelectedEventArgs.cs
- Freezable.cs
- BamlRecordHelper.cs
- SvcMapFileSerializer.cs
- DbMetaDataCollectionNames.cs
- DataGridViewAutoSizeModeEventArgs.cs
- NamespaceInfo.cs
- ToolStripTemplateNode.cs
- RemoteWebConfigurationHost.cs
- CultureInfo.cs
- AccessedThroughPropertyAttribute.cs
- DesignerTransactionCloseEvent.cs
- TimeSpanStorage.cs
- ClientFormsAuthenticationCredentials.cs
- InlinedAggregationOperatorEnumerator.cs
- ApplicationSecurityInfo.cs
- AnyAllSearchOperator.cs
- CodeGotoStatement.cs
- OracleRowUpdatedEventArgs.cs
- HierarchicalDataBoundControl.cs
- OracleDataReader.cs
- WindowsRebar.cs
- BulletedList.cs
- PersonalizableAttribute.cs
- ResetableIterator.cs
- EmptyEnumerable.cs
- ManagedWndProcTracker.cs
- CheckedListBox.cs