Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / 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
- PropertyGrid.cs
- HeaderCollection.cs
- LongTypeConverter.cs
- WebBrowserNavigatedEventHandler.cs
- Vector3dCollection.cs
- WindowsClaimSet.cs
- NaturalLanguageHyphenator.cs
- InputLanguageCollection.cs
- DropShadowEffect.cs
- ListBox.cs
- DecimalAnimationBase.cs
- DynamicRendererThreadManager.cs
- PingReply.cs
- ErrorTableItemStyle.cs
- Reference.cs
- UnwrappedTypesXmlSerializerManager.cs
- Clause.cs
- DriveInfo.cs
- EarlyBoundInfo.cs
- PopOutPanel.cs
- AnnotationObservableCollection.cs
- ToolstripProfessionalRenderer.cs
- Grid.cs
- RadioButtonPopupAdapter.cs
- DynamicPropertyHolder.cs
- WindowsListViewSubItem.cs
- contentDescriptor.cs
- EventListenerClientSide.cs
- SqlClientPermission.cs
- CollectionViewGroupInternal.cs
- AttachedPropertyDescriptor.cs
- CharacterBufferReference.cs
- RankException.cs
- ProfileBuildProvider.cs
- FrameworkObject.cs
- MemoryFailPoint.cs
- ContextInformation.cs
- DelegatingTypeDescriptionProvider.cs
- DefaultPrintController.cs
- AsynchronousChannelMergeEnumerator.cs
- OperationAbortedException.cs
- DataSourceView.cs
- SelfIssuedAuthRSACryptoProvider.cs
- SendKeys.cs
- XmlIncludeAttribute.cs
- SecurityState.cs
- ItemsPanelTemplate.cs
- ProgressBar.cs
- TemplateBindingExtension.cs
- SmtpLoginAuthenticationModule.cs
- SerializationAttributes.cs
- SafeNativeMethodsOther.cs
- DetailsViewDeleteEventArgs.cs
- Button.cs
- TextTreeRootNode.cs
- DataTableMapping.cs
- TextProperties.cs
- MenuItem.cs
- ParserContext.cs
- ModifierKeysValueSerializer.cs
- XpsDocument.cs
- DrawingCollection.cs
- NamespaceImport.cs
- TextParagraphView.cs
- ConversionContext.cs
- NameValueFileSectionHandler.cs
- PointAnimation.cs
- XmlUTF8TextWriter.cs
- ObjectAnimationUsingKeyFrames.cs
- StyleHelper.cs
- CodeGenerationManager.cs
- XPathDocument.cs
- XmlTextWriter.cs
- CqlParserHelpers.cs
- SetterBase.cs
- ChannelBinding.cs
- SingleTagSectionHandler.cs
- DriveNotFoundException.cs
- ProcessHost.cs
- SiteMapDataSourceView.cs
- BypassElementCollection.cs
- AppDomain.cs
- Configuration.cs
- Frame.cs
- Exceptions.cs
- DataKey.cs
- AuthenticationModulesSection.cs
- XLinq.cs
- remotingproxy.cs
- OdbcError.cs
- RectConverter.cs
- ConfigurationStrings.cs
- QilBinary.cs
- CollectionEditVerbManager.cs
- Normalization.cs
- ObjectMemberMapping.cs
- ContentPosition.cs
- RangeValueProviderWrapper.cs
- ZipPackage.cs
- ClientTargetSection.cs