Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / GrammarBuilding / RuleRefElement.cs / 1 / RuleRefElement.cs
//------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------- using System.Collections.Generic; using System.Diagnostics; using System.Speech.Recognition; using System.Speech.Internal.SrgsParser; using System.Text; namespace System.Speech.Internal.GrammarBuilding { ////// /// [DebuggerDisplay ("{DebugSummary}")] internal sealed class RuleRefElement : GrammarBuilderBase { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors ////// /// /// internal RuleRefElement (RuleElement rule) { _rule = rule; } ////// /// /// /// internal RuleRefElement (RuleElement rule, string semanticKey) { _rule = rule; _semanticKey = semanticKey; } #endregion //******************************************************************** // // Public Methods // //******************************************************************* #region Public Methods /// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.Equals"]/*' /> public override bool Equals (object obj) { RuleRefElement refObj = obj as RuleRefElement; if (refObj == null) { return false; } return _semanticKey == refObj._semanticKey && _rule.Equals (refObj._rule); } /// TODOC <_include file='doc\SpeechAudioFormatInfo.uex' path='docs/doc[@for="SpeechAudioFormatInfo.GetHashCode"]/*' /> public override int GetHashCode () { return base.GetHashCode (); } #endregion //******************************************************************** // // Internal Methods // //******************************************************************** #region Internal Methods ////// /// /// internal void Add (GrammarBuilderBase item) { _rule.Add (item); } ////// /// ///override internal GrammarBuilderBase Clone () { return new RuleRefElement (_rule, _semanticKey); } /// /// /// ////// internal void CloneItems (RuleRefElement builders) { _rule.CloneItems (builders._rule); } /// /// /// /// /// /// /// ///override internal IElement CreateElement (IElementFactory elementFactory, IElement parent, IRule rule, IdentifierCollection ruleIds) { // Create the new rule and add the reference to the item return elementFactory.CreateRuleRef (parent, new Uri ("#" + Rule.RuleName, UriKind.Relative), _semanticKey, null); } #endregion //******************************************************************* // // Internal Properties // //******************************************************************** #region Internal Properties internal RuleElement Rule { get { return _rule; } } override internal string DebugSummary { get { return "#" + Rule.Name + (_semanticKey != null ? ":" + _semanticKey : ""); } } #endregion //******************************************************************* // // Private Fields // //******************************************************************* #region Private Fields /// /// /// private readonly RuleElement _rule; private readonly string _semanticKey; #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
- AuthenticationConfig.cs
- RadioButton.cs
- InvariantComparer.cs
- KeyTime.cs
- SelectorAutomationPeer.cs
- StoreItemCollection.Loader.cs
- VersionPair.cs
- Aggregates.cs
- CallSite.cs
- SID.cs
- ContractHandle.cs
- UnicastIPAddressInformationCollection.cs
- HMACSHA256.cs
- ThemeInfoAttribute.cs
- MenuItemStyle.cs
- TdsValueSetter.cs
- UnsafeNativeMethods.cs
- GradientBrush.cs
- HTMLTagNameToTypeMapper.cs
- ConfigXmlCDataSection.cs
- compensatingcollection.cs
- Dynamic.cs
- DataGridParentRows.cs
- GenerateScriptTypeAttribute.cs
- TypeNameConverter.cs
- DataBoundControlHelper.cs
- ListViewSortEventArgs.cs
- DoubleAnimationClockResource.cs
- ArrangedElement.cs
- InlinedAggregationOperatorEnumerator.cs
- XPathNodeList.cs
- ApplicationDirectoryMembershipCondition.cs
- SoapRpcServiceAttribute.cs
- RoleManagerModule.cs
- SamlSecurityTokenAuthenticator.cs
- CacheEntry.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TaiwanLunisolarCalendar.cs
- ResourceCollectionInfo.cs
- SapiRecognizer.cs
- ParameterBuilder.cs
- MaskedTextProvider.cs
- CompilerErrorCollection.cs
- CheckBoxBaseAdapter.cs
- WebPartDescriptionCollection.cs
- ProcessInfo.cs
- AuthenticationManager.cs
- Base64Encoder.cs
- MachineKeyValidationConverter.cs
- ColumnCollection.cs
- ArgumentDesigner.xaml.cs
- BufferedStream.cs
- CallSiteBinder.cs
- IfAction.cs
- ToolStripItemGlyph.cs
- AspCompat.cs
- XslNumber.cs
- ConsumerConnectionPointCollection.cs
- FontFamily.cs
- DynamicResourceExtensionConverter.cs
- PipelineModuleStepContainer.cs
- DataSourceHelper.cs
- ResXDataNode.cs
- TableCellCollection.cs
- _NegoStream.cs
- PathData.cs
- VisualTarget.cs
- ByteRangeDownloader.cs
- TypeSystem.cs
- Delegate.cs
- Constraint.cs
- TableChangeProcessor.cs
- GeneralTransformGroup.cs
- GenericTypeParameterBuilder.cs
- EndpointBehaviorElement.cs
- HttpProtocolReflector.cs
- SafeNativeMethods.cs
- ColumnCollection.cs
- SQLSingleStorage.cs
- XpsS0ValidatingLoader.cs
- WSTransactionSection.cs
- CreateBookmarkScope.cs
- ListDictionary.cs
- EventListenerClientSide.cs
- SafeEventLogWriteHandle.cs
- DocumentViewerBase.cs
- RegexInterpreter.cs
- ZipIOLocalFileDataDescriptor.cs
- WebReferencesBuildProvider.cs
- PreviewPrintController.cs
- CredentialCache.cs
- WebPartEditVerb.cs
- DataTemplate.cs
- EdmValidator.cs
- ReflectionPermission.cs
- Pkcs9Attribute.cs
- OutputScope.cs
- SwitchLevelAttribute.cs
- OpacityConverter.cs
- HostedNamedPipeTransportManager.cs