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 / SrgsGrammar / SrgsElement.cs / 1 / SrgsElement.cs
//---------------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // // // Description: // // History: // 5/1/2004 jeanfp Created from the Kurosawa Code //--------------------------------------------------------------------------- using System; using System.Xml; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Speech.Internal.SrgsParser; namespace System.Speech.Recognition.SrgsGrammar { ////// Base class for all SRGS object to build XML fragment corresponding to the object. /// [Serializable] [DebuggerDisplay ("SrgsElement Children:[{_items.Count}]")] [DebuggerTypeProxy (typeof (SrgsElementDebugDisplay))] public abstract class SrgsElement : MarshalByRefObject, IElement { ////// TODOC /// protected SrgsElement () { } //******************************************************************* // // Internal Methods // //******************************************************************* #region Internal methods // Write the XML fragment describing the object. internal abstract void WriteSrgs (XmlWriter writer); // Debugger display string. internal abstract string DebuggerDisplayString (); // Validate the SRGS element. ////// Validate each element and recurse through all the children srgs /// elements if any. /// Any derived class implementing this mehod must call the base class /// in order for the children to be processed. /// internal virtual void Validate (SrgsGrammar grammar) { foreach (SrgsElement element in Children) { // Child validation element.Validate (grammar); } } void IElement.PostParse (IElement parent) { } #endregion //******************************************************************** // // Protected Properties // //******************************************************************* #region Protected Properties //TODOC Add Documentation virtual internal SrgsElement [] Children { get { return new SrgsElement [0]; } } #endregion //******************************************************************** // // Private Types // //******************************************************************** #region Private Types // Used by the debbugger display attribute internal class SrgsElementDebugDisplay { public SrgsElementDebugDisplay (SrgsElement element) { _elements = element.Children; } [DebuggerBrowsable (DebuggerBrowsableState.RootHidden)] public SrgsElement [] AKeys { get { return _elements; } } private SrgsElement [] _elements; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // // // Description: // // History: // 5/1/2004 jeanfp Created from the Kurosawa Code //--------------------------------------------------------------------------- using System; using System.Xml; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Speech.Internal.SrgsParser; namespace System.Speech.Recognition.SrgsGrammar { ////// Base class for all SRGS object to build XML fragment corresponding to the object. /// [Serializable] [DebuggerDisplay ("SrgsElement Children:[{_items.Count}]")] [DebuggerTypeProxy (typeof (SrgsElementDebugDisplay))] public abstract class SrgsElement : MarshalByRefObject, IElement { ////// TODOC /// protected SrgsElement () { } //******************************************************************* // // Internal Methods // //******************************************************************* #region Internal methods // Write the XML fragment describing the object. internal abstract void WriteSrgs (XmlWriter writer); // Debugger display string. internal abstract string DebuggerDisplayString (); // Validate the SRGS element. ////// Validate each element and recurse through all the children srgs /// elements if any. /// Any derived class implementing this mehod must call the base class /// in order for the children to be processed. /// internal virtual void Validate (SrgsGrammar grammar) { foreach (SrgsElement element in Children) { // Child validation element.Validate (grammar); } } void IElement.PostParse (IElement parent) { } #endregion //******************************************************************** // // Protected Properties // //******************************************************************* #region Protected Properties //TODOC Add Documentation virtual internal SrgsElement [] Children { get { return new SrgsElement [0]; } } #endregion //******************************************************************** // // Private Types // //******************************************************************** #region Private Types // Used by the debbugger display attribute internal class SrgsElementDebugDisplay { public SrgsElementDebugDisplay (SrgsElement element) { _elements = element.Children; } [DebuggerBrowsable (DebuggerBrowsableState.RootHidden)] public SrgsElement [] AKeys { get { return _elements; } } private SrgsElement [] _elements; } #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
- WSSecurityJan2004.cs
- LayoutDump.cs
- BaseDataList.cs
- ProgressiveCrcCalculatingStream.cs
- SimpleMailWebEventProvider.cs
- DoubleAnimationUsingPath.cs
- HttpGetClientProtocol.cs
- HttpWrapper.cs
- ActiveXHost.cs
- ToolStripItemEventArgs.cs
- hwndwrapper.cs
- Menu.cs
- QueryCacheManager.cs
- ServerValidateEventArgs.cs
- RetriableClipboard.cs
- DataGridItemCollection.cs
- CommandDevice.cs
- FileDetails.cs
- InputReport.cs
- ColorTranslator.cs
- DependencySource.cs
- StringCollection.cs
- SqlAggregateChecker.cs
- ConfigXmlElement.cs
- InteropBitmapSource.cs
- DesignerDataParameter.cs
- TextEndOfParagraph.cs
- IItemProperties.cs
- ProxyFragment.cs
- TargetConverter.cs
- ChtmlFormAdapter.cs
- Attributes.cs
- MissingMemberException.cs
- AutomationInteropProvider.cs
- PackageFilter.cs
- BuilderInfo.cs
- counter.cs
- SplayTreeNode.cs
- mediaeventargs.cs
- MouseActionConverter.cs
- TabletDeviceInfo.cs
- XmlDataSourceView.cs
- ActionFrame.cs
- BitVector32.cs
- FileChangesMonitor.cs
- unitconverter.cs
- TrackingRecordPreFilter.cs
- XmlRawWriterWrapper.cs
- WorkflowMarkupSerializer.cs
- TextModifierScope.cs
- CheckBoxFlatAdapter.cs
- UITypeEditor.cs
- SHA1CryptoServiceProvider.cs
- TextEndOfParagraph.cs
- UInt32Converter.cs
- LoadGrammarCompletedEventArgs.cs
- AccessControlList.cs
- ContentFileHelper.cs
- StaticExtensionConverter.cs
- MultipartContentParser.cs
- WebControlAdapter.cs
- NameValuePermission.cs
- URI.cs
- ProxyWebPartManager.cs
- METAHEADER.cs
- Size.cs
- ContentHostHelper.cs
- HttpEncoderUtility.cs
- Pipe.cs
- TrackingProfile.cs
- OptimisticConcurrencyException.cs
- WeakReadOnlyCollection.cs
- SpeechRecognitionEngine.cs
- PopOutPanel.cs
- SQLRoleProvider.cs
- TextViewSelectionProcessor.cs
- StrongNameSignatureInformation.cs
- SerializationInfo.cs
- NetworkStream.cs
- CipherData.cs
- WindowsContainer.cs
- ControlBuilderAttribute.cs
- BufferBuilder.cs
- AsymmetricSignatureFormatter.cs
- RenderData.cs
- Wildcard.cs
- HostAdapter.cs
- MemberDomainMap.cs
- XmlValueConverter.cs
- InfoCardSymmetricCrypto.cs
- DebuggerAttributes.cs
- DropShadowEffect.cs
- ProxyAttribute.cs
- SpnegoTokenProvider.cs
- ImageSourceValueSerializer.cs
- EntityCollection.cs
- MetadataWorkspace.cs
- XmlArrayItemAttributes.cs
- ToolboxComponentsCreatedEventArgs.cs
- BrowserDefinitionCollection.cs