Code:
/ DotNET / DotNET / 8.0 / untmp / 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 [....] 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 debugger 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MetadataExchangeClient.cs
- WriteStateInfoBase.cs
- Part.cs
- Policy.cs
- CommandBinding.cs
- ActiveXMessageFormatter.cs
- ObjectListCommandCollection.cs
- ConfigurationPropertyAttribute.cs
- SqlCacheDependencySection.cs
- HtmlInputText.cs
- ProxyWebPartConnectionCollection.cs
- PopupEventArgs.cs
- XsltSettings.cs
- LocalizeDesigner.cs
- LicenseContext.cs
- PermissionSetTriple.cs
- TextDecoration.cs
- Pts.cs
- EntityDescriptor.cs
- LassoHelper.cs
- ActivityTrace.cs
- MachineKeyValidationConverter.cs
- NavigationProgressEventArgs.cs
- BaseTemplateCodeDomTreeGenerator.cs
- Transform.cs
- UrlMapping.cs
- HttpContext.cs
- WebHttpDispatchOperationSelector.cs
- PathFigure.cs
- TextTreePropertyUndoUnit.cs
- ModifyActivitiesPropertyDescriptor.cs
- TextWriterTraceListener.cs
- WorkerRequest.cs
- PolyBezierSegmentFigureLogic.cs
- CreateUserErrorEventArgs.cs
- HttpProfileGroupBase.cs
- WindowsAuthenticationModule.cs
- ExceptionValidationRule.cs
- XmlWrappingReader.cs
- HelloMessageCD1.cs
- HttpHandlersSection.cs
- Shape.cs
- CodeVariableReferenceExpression.cs
- ApplicationServicesHostFactory.cs
- UrlUtility.cs
- sqlpipe.cs
- StylusDevice.cs
- ReadOnlyAttribute.cs
- NavigatorOutput.cs
- Update.cs
- FormViewModeEventArgs.cs
- DbBuffer.cs
- ButtonStandardAdapter.cs
- ReturnEventArgs.cs
- TextServicesManager.cs
- ExpressionDumper.cs
- BamlTreeNode.cs
- Message.cs
- DispatcherProcessingDisabled.cs
- TextSelectionProcessor.cs
- unsafeIndexingFilterStream.cs
- SqlCommandSet.cs
- CodeDomSerializer.cs
- IDReferencePropertyAttribute.cs
- RegisteredDisposeScript.cs
- MarkupCompilePass2.cs
- XmlWrappingReader.cs
- XsdValidatingReader.cs
- DataObjectFieldAttribute.cs
- DbParameterCollectionHelper.cs
- HttpResponse.cs
- DCSafeHandle.cs
- SByteStorage.cs
- ReadOnlyDictionary.cs
- AstTree.cs
- SoapServerMessage.cs
- SafeNativeMemoryHandle.cs
- Converter.cs
- SID.cs
- DesignTimeVisibleAttribute.cs
- OleDbCommandBuilder.cs
- ElementHostAutomationPeer.cs
- Itemizer.cs
- GridProviderWrapper.cs
- AutomationPropertyInfo.cs
- NonParentingControl.cs
- ValueQuery.cs
- Dynamic.cs
- PersonalizablePropertyEntry.cs
- HandleCollector.cs
- ColorTransform.cs
- XmlElement.cs
- EndpointAddressProcessor.cs
- SystemInformation.cs
- TabItemWrapperAutomationPeer.cs
- PreviewKeyDownEventArgs.cs
- UrlMapping.cs
- GridViewColumnHeader.cs
- OleAutBinder.cs
- DbSetClause.cs