Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / Synthesis / ISSmlParser.cs / 1 / ISSmlParser.cs
//// Copyright (c) Microsoft Corporation. All rights reserved. // // // Description: // // History: // 3/15/2005 [....] Created //---------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Speech.Synthesis; using System.Speech.Synthesis.TtsEngine; using System.Text; using System.Xml; namespace System.Speech.Internal.Synthesis { //******************************************************************* // // Internal Types // //******************************************************************* #region Internal Types internal interface ISsmlParser { object ProcessSpeak (string sVersion, string sBaseUri, CultureInfo culture, ListextraNamespace); void ProcessText (string text, object voice, ref FragmentState fragmentState, int position, bool fIgnore); void ProcessAudio (object voice, string sUri, string baseUri, bool fIgnore); void ProcessBreak (object voice, ref FragmentState fragmentState, EmphasisBreak eBreak, int time, bool fIgnore); void ProcessDesc (CultureInfo culture); void ProcessEmphasis (bool noLevel, EmphasisWord word); void ProcessMark (object voice, ref FragmentState fragmentState, string name, bool fIgnore); object ProcessTextBlock (bool isParagraph, object voice, ref FragmentState fragmentState, CultureInfo culture, bool newCulture, VoiceGender gender, VoiceAge age); void EndProcessTextBlock (bool isParagraph); void ProcessPhoneme (ref FragmentState fragmentState, AlphabetType alphabet, string ph, char [] phoneIds); void ProcessProsody (string pitch, string range, string rate, string volume, string duration, string points); void ProcessSayAs (string interpretAs, string format, string detail); void ProcessSub (string alias, object voice, ref FragmentState fragmentState, int position, bool fIgnore); object ProcessVoice (string name, CultureInfo culture, VoiceGender gender, VoiceAge age, int variant, bool fNewCulture, List extraNamespace); void ProcessLexicon (Uri uri, string type); void EndElement (); void EndSpeakElement (); void ProcessUnknownElement (object voice, ref FragmentState fragmentState, XmlReader reader); void StartProcessUnknownAttributes (object voice, ref FragmentState fragmentState, string element, List extraAttributes); void EndProcessUnknownAttributes (object voice, ref FragmentState fragmentState, string element, List extraAttributes); // Prompt data used void ContainsPexml (string pexmlPrefix); // Prompt Engine tags bool BeginPromptEngineOutput (object voice); void EndPromptEngineOutput (object voice); // global elements bool ProcessPromptEngineDatabase (object voice, string fname, string delta, string idset); bool ProcessPromptEngineDiv (object voice); bool ProcessPromptEngineId (object voice, string id); // scoped elements bool BeginPromptEngineTts (object voice); void EndPromptEngineTts (object voice); bool BeginPromptEngineWithTag (object voice, string tag); void EndPromptEngineWithTag (object voice, string tag); bool BeginPromptEngineRule (object voice, string name); void EndPromptEngineRule (object voice, string name); // Properties string Ssml { get; } } internal class LexiconEntry { internal Uri _uri; internal string _mediaType; internal LexiconEntry (Uri uri, string mediaType) { _uri = uri; _mediaType = mediaType; } /// /// Tests whether two objects are equivalent /// public override bool Equals (object obj) { LexiconEntry entry = obj as LexiconEntry; return entry != null && _uri.Equals (entry._uri); } ////// Overrides Object.GetHashCode() /// public override int GetHashCode () { return _uri.GetHashCode (); } } internal class SsmlXmlAttribute { internal SsmlXmlAttribute (string prefix, string name, string value, string ns) { _prefix = prefix; _name = name; _value = value; _ns = ns; } internal string _prefix; internal string _name; internal string _value; internal string _ns; } #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
- PartitionResolver.cs
- _PooledStream.cs
- SystemIPInterfaceProperties.cs
- XmlQueryRuntime.cs
- DataGridViewCellFormattingEventArgs.cs
- ParamArrayAttribute.cs
- SqlServices.cs
- NavigationWindow.cs
- SchemaSetCompiler.cs
- ThicknessAnimation.cs
- RoleGroup.cs
- MdiWindowListStrip.cs
- Debug.cs
- UnaryNode.cs
- DataRelation.cs
- SdlChannelSink.cs
- TreeNodeBinding.cs
- Convert.cs
- oledbmetadatacollectionnames.cs
- HostExecutionContextManager.cs
- TypeBinaryExpression.cs
- CodeCastExpression.cs
- ReservationCollection.cs
- CustomAttributeFormatException.cs
- TreeNodeStyleCollection.cs
- Substitution.cs
- SelectedGridItemChangedEvent.cs
- Axis.cs
- RenderTargetBitmap.cs
- SecurityContextSecurityTokenAuthenticator.cs
- pingexception.cs
- DataGridCaption.cs
- remotingproxy.cs
- UIElement3D.cs
- MediaElementAutomationPeer.cs
- PtsHost.cs
- HtmlElementCollection.cs
- BooleanFunctions.cs
- UpdateProgress.cs
- RequestCacheEntry.cs
- RC2CryptoServiceProvider.cs
- PathFigure.cs
- EllipseGeometry.cs
- PinnedBufferMemoryStream.cs
- DataControlField.cs
- ReliableOutputConnection.cs
- Pens.cs
- DummyDataSource.cs
- XmlSchemaAttribute.cs
- DataContractJsonSerializerOperationFormatter.cs
- SerializableAttribute.cs
- PackageRelationship.cs
- SecurityContextTokenValidationException.cs
- ListViewGroup.cs
- EtwTrackingBehavior.cs
- StylusEditingBehavior.cs
- FixedSOMElement.cs
- SizeKeyFrameCollection.cs
- CompressionTransform.cs
- WebBrowserPermission.cs
- LoginNameDesigner.cs
- TextBoxBase.cs
- AbstractSvcMapFileLoader.cs
- TdsParserStaticMethods.cs
- Rotation3DKeyFrameCollection.cs
- SerializationAttributes.cs
- XPathMultyIterator.cs
- TranslateTransform3D.cs
- XMLUtil.cs
- NominalTypeEliminator.cs
- InputBindingCollection.cs
- ListViewSortEventArgs.cs
- _AuthenticationState.cs
- BeginStoryboard.cs
- SamlDelegatingWriter.cs
- ToolStripStatusLabel.cs
- _FtpControlStream.cs
- UnsafeNativeMethodsPenimc.cs
- DataBoundControlParameterTarget.cs
- LinqDataSourceContextEventArgs.cs
- ObjectQuery.cs
- XmlArrayItemAttributes.cs
- SQLBoolean.cs
- GlyphTypeface.cs
- OleDbMetaDataFactory.cs
- Brush.cs
- CodeGenerator.cs
- System.Data.OracleClient_BID.cs
- CollectionConverter.cs
- ExtenderControl.cs
- BooleanFunctions.cs
- x509utils.cs
- RoleManagerSection.cs
- GeneralTransform.cs
- PerformanceCounterManager.cs
- BitmapImage.cs
- login.cs
- KnownColorTable.cs
- Operator.cs
- ApplicationException.cs