Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / GrammarBuilding / GrammarBuilderPhrase.cs / 1 / GrammarBuilderPhrase.cs
//------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------
using System.Diagnostics;
using System.Speech.Internal.SrgsCompiler;
using System.Speech.Internal.SrgsParser;
using System.Speech.Recognition;
namespace System.Speech.Internal.GrammarBuilding
{
#if VSCOMPILE
[DebuggerDisplay ("{DebugSummary}")]
#endif
internal sealed class GrammarBuilderPhrase : GrammarBuilderBase
{
//*******************************************************************
//
// Constructors
//
//*******************************************************************
#region Constructors
///
///
///
///
internal GrammarBuilderPhrase (string phrase)
: this (phrase, false, SubsetMatchingMode.OrderedSubset)
{
}
///
///
///
///
///
internal GrammarBuilderPhrase (string phrase, SubsetMatchingMode subsetMatchingCriteria)
: this (phrase, true, subsetMatchingCriteria)
{
}
///
///
///
///
///
///
private GrammarBuilderPhrase (string phrase, bool subsetMatching, SubsetMatchingMode subsetMatchingCriteria)
{
_phrase = string.Copy (phrase);
_subsetMatching = subsetMatching;
switch (subsetMatchingCriteria)
{
case SubsetMatchingMode.OrderedSubset:
_matchMode = MatchMode.OrderedSubset;
break;
case SubsetMatchingMode.OrderedSubsetContentRequired:
_matchMode = MatchMode.OrderedSubsetContentRequired;
break;
case SubsetMatchingMode.Subsequence:
_matchMode = MatchMode.Subsequence;
break;
case SubsetMatchingMode.SubsequenceContentRequired:
_matchMode = MatchMode.SubsequenceContentRequired;
break;
}
}
///
///
///
///
///
///
private GrammarBuilderPhrase (string phrase, bool subsetMatching, MatchMode matchMode)
{
_phrase = string.Copy (phrase);
_subsetMatching = subsetMatching;
_matchMode = matchMode;
}
#endregion
//********************************************************************
//
// Public Methods
//
//*******************************************************************
#region Public Methods
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.Equals"]/*' />
public override bool Equals (object obj)
{
GrammarBuilderPhrase refObj = obj as GrammarBuilderPhrase;
if (refObj == null)
{
return false;
}
return _phrase == refObj._phrase && _matchMode == refObj._matchMode && _subsetMatching == refObj._subsetMatching;
}
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.GetHashCode"]/*' />
public override int GetHashCode ()
{
return _phrase.GetHashCode ();
}
#endregion
//********************************************************************
//
// Internal Methods
//
//********************************************************************
#region Internal Methods
///
///
///
///
internal override GrammarBuilderBase Clone ()
{
return new GrammarBuilderPhrase (_phrase, _subsetMatching, _matchMode);
}
///
///
///
///
///
///
///
///
internal override IElement CreateElement (IElementFactory elementFactory, IElement parent, IRule rule, IdentifierCollection ruleIds)
{
return CreatePhraseElement (elementFactory, parent);
}
#endregion
//*******************************************************************
//
// Internal Properties
//
//********************************************************************
#region Internal Properties
override internal string DebugSummary
{
get
{
return "‘" + _phrase + "’";
}
}
#endregion
//*******************************************************************
//
// Private Methods
//
//*******************************************************************
#region Private Methods
///
///
///
///
///
///
private IElement CreatePhraseElement (IElementFactory elementFactory, IElement parent)
{
if (_subsetMatching)
{
// Create and return the ISubset representing the current phrase
return elementFactory.CreateSubset (parent, _phrase, _matchMode);
}
else
{
if (elementFactory is SrgsElementCompilerFactory)
{
XmlParser.ParseText (parent, _phrase, null, null, -1f, new CreateTokenCallback (elementFactory.CreateToken));
}
else
{
// Create and return the IElementText representing the current phrase
return elementFactory.CreateText (parent, _phrase);
}
}
return null;
}
#endregion
//*******************************************************************
//
// Private Fields
//
//********************************************************************
#region Private Fields
private readonly string _phrase;
private readonly bool _subsetMatching;
private readonly MatchMode _matchMode;
#endregion
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------
using System.Diagnostics;
using System.Speech.Internal.SrgsCompiler;
using System.Speech.Internal.SrgsParser;
using System.Speech.Recognition;
namespace System.Speech.Internal.GrammarBuilding
{
#if VSCOMPILE
[DebuggerDisplay ("{DebugSummary}")]
#endif
internal sealed class GrammarBuilderPhrase : GrammarBuilderBase
{
//*******************************************************************
//
// Constructors
//
//*******************************************************************
#region Constructors
///
///
///
///
internal GrammarBuilderPhrase (string phrase)
: this (phrase, false, SubsetMatchingMode.OrderedSubset)
{
}
///
///
///
///
///
internal GrammarBuilderPhrase (string phrase, SubsetMatchingMode subsetMatchingCriteria)
: this (phrase, true, subsetMatchingCriteria)
{
}
///
///
///
///
///
///
private GrammarBuilderPhrase (string phrase, bool subsetMatching, SubsetMatchingMode subsetMatchingCriteria)
{
_phrase = string.Copy (phrase);
_subsetMatching = subsetMatching;
switch (subsetMatchingCriteria)
{
case SubsetMatchingMode.OrderedSubset:
_matchMode = MatchMode.OrderedSubset;
break;
case SubsetMatchingMode.OrderedSubsetContentRequired:
_matchMode = MatchMode.OrderedSubsetContentRequired;
break;
case SubsetMatchingMode.Subsequence:
_matchMode = MatchMode.Subsequence;
break;
case SubsetMatchingMode.SubsequenceContentRequired:
_matchMode = MatchMode.SubsequenceContentRequired;
break;
}
}
///
///
///
///
///
///
private GrammarBuilderPhrase (string phrase, bool subsetMatching, MatchMode matchMode)
{
_phrase = string.Copy (phrase);
_subsetMatching = subsetMatching;
_matchMode = matchMode;
}
#endregion
//********************************************************************
//
// Public Methods
//
//*******************************************************************
#region Public Methods
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.Equals"]/*' />
public override bool Equals (object obj)
{
GrammarBuilderPhrase refObj = obj as GrammarBuilderPhrase;
if (refObj == null)
{
return false;
}
return _phrase == refObj._phrase && _matchMode == refObj._matchMode && _subsetMatching == refObj._subsetMatching;
}
/// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.GetHashCode"]/*' />
public override int GetHashCode ()
{
return _phrase.GetHashCode ();
}
#endregion
//********************************************************************
//
// Internal Methods
//
//********************************************************************
#region Internal Methods
///
///
///
///
internal override GrammarBuilderBase Clone ()
{
return new GrammarBuilderPhrase (_phrase, _subsetMatching, _matchMode);
}
///
///
///
///
///
///
///
///
internal override IElement CreateElement (IElementFactory elementFactory, IElement parent, IRule rule, IdentifierCollection ruleIds)
{
return CreatePhraseElement (elementFactory, parent);
}
#endregion
//*******************************************************************
//
// Internal Properties
//
//********************************************************************
#region Internal Properties
override internal string DebugSummary
{
get
{
return "‘" + _phrase + "’";
}
}
#endregion
//*******************************************************************
//
// Private Methods
//
//*******************************************************************
#region Private Methods
///
///
///
///
///
///
private IElement CreatePhraseElement (IElementFactory elementFactory, IElement parent)
{
if (_subsetMatching)
{
// Create and return the ISubset representing the current phrase
return elementFactory.CreateSubset (parent, _phrase, _matchMode);
}
else
{
if (elementFactory is SrgsElementCompilerFactory)
{
XmlParser.ParseText (parent, _phrase, null, null, -1f, new CreateTokenCallback (elementFactory.CreateToken));
}
else
{
// Create and return the IElementText representing the current phrase
return elementFactory.CreateText (parent, _phrase);
}
}
return null;
}
#endregion
//*******************************************************************
//
// Private Fields
//
//********************************************************************
#region Private Fields
private readonly string _phrase;
private readonly bool _subsetMatching;
private readonly MatchMode _matchMode;
#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
- WsatTransactionHeader.cs
- StylusPointPropertyUnit.cs
- HtmlTableCell.cs
- login.cs
- MethodCallConverter.cs
- FormViewDeleteEventArgs.cs
- TabPage.cs
- UpdateDelegates.Generated.cs
- InlineCollection.cs
- FixedSchema.cs
- SaveFileDialog.cs
- InputMethodStateTypeInfo.cs
- ArrayList.cs
- DocumentApplicationJournalEntry.cs
- GiveFeedbackEventArgs.cs
- Matrix3DStack.cs
- UIElementIsland.cs
- TextRangeEditTables.cs
- Point3D.cs
- AuthenticationConfig.cs
- DataViewManagerListItemTypeDescriptor.cs
- UnhandledExceptionEventArgs.cs
- oledbconnectionstring.cs
- TextProviderWrapper.cs
- _TLSstream.cs
- TcpSocketManager.cs
- RepeatInfo.cs
- TextWriter.cs
- SHA256Managed.cs
- EventLogReader.cs
- CustomBindingElement.cs
- WindowVisualStateTracker.cs
- ComboBox.cs
- NativeMethods.cs
- DataServiceCollectionOfT.cs
- RenderCapability.cs
- AccessDataSourceDesigner.cs
- EncodingTable.cs
- ScriptReference.cs
- OutputCacheProfileCollection.cs
- BooleanAnimationUsingKeyFrames.cs
- SectionVisual.cs
- ReadOnlyPermissionSet.cs
- Location.cs
- PackageFilter.cs
- BitmapPalettes.cs
- GAC.cs
- BitStack.cs
- TextStore.cs
- CodePageUtils.cs
- PropertyTab.cs
- GC.cs
- CuspData.cs
- HttpAsyncResult.cs
- ExeConfigurationFileMap.cs
- SmiGettersStream.cs
- ResourceDisplayNameAttribute.cs
- UnitySerializationHolder.cs
- RemoteWebConfigurationHostServer.cs
- DataSourceView.cs
- NetworkStream.cs
- RootContext.cs
- Automation.cs
- WindowsRebar.cs
- BitmapEffectGroup.cs
- RegexCompilationInfo.cs
- DoubleLinkListEnumerator.cs
- Hex.cs
- TaskExtensions.cs
- CallSite.cs
- CountdownEvent.cs
- storepermission.cs
- SqlGenerator.cs
- DBPropSet.cs
- SelectionRangeConverter.cs
- ItemContainerProviderWrapper.cs
- InheritanceAttribute.cs
- Baml2006KnownTypes.cs
- AppDomainProtocolHandler.cs
- TableItemPattern.cs
- Form.cs
- SettingsAttributes.cs
- VideoDrawing.cs
- FirstMatchCodeGroup.cs
- VisualTreeHelper.cs
- MimePart.cs
- FloaterParaClient.cs
- TraceUtility.cs
- ListBox.cs
- DataGridItemEventArgs.cs
- DispatchRuntime.cs
- ChannelEndpointElement.cs
- UnsafeNativeMethodsPenimc.cs
- WpfSharedBamlSchemaContext.cs
- MulticastNotSupportedException.cs
- HostProtectionException.cs
- HealthMonitoringSectionHelper.cs
- LineInfo.cs
- ASCIIEncoding.cs
- ListViewTableRow.cs