Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / 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 jeanfp 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. // // // Description: // // History: // 3/15/2005 jeanfp 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DocumentViewerAutomationPeer.cs
- SemanticAnalyzer.cs
- CloseSequence.cs
- InstanceDescriptor.cs
- ZeroOpNode.cs
- ReaderContextStackData.cs
- BulletedListDesigner.cs
- MissingManifestResourceException.cs
- Rect3D.cs
- MappedMetaModel.cs
- FastEncoderWindow.cs
- XmlValueConverter.cs
- SortKey.cs
- SafeFileMappingHandle.cs
- mactripleDES.cs
- SystemParameters.cs
- EventMemberCodeDomSerializer.cs
- DataSourceIDConverter.cs
- ClientSettingsProvider.cs
- MethodBody.cs
- EllipseGeometry.cs
- StylusEventArgs.cs
- Page.cs
- Parallel.cs
- Paragraph.cs
- SrgsRulesCollection.cs
- Utils.cs
- NativeRecognizer.cs
- QueryOperationResponseOfT.cs
- CardSpaceSelector.cs
- PanelStyle.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- Directory.cs
- recordstatefactory.cs
- CompositeControl.cs
- TreeNodeBindingCollection.cs
- ProgressiveCrcCalculatingStream.cs
- InputMethodStateChangeEventArgs.cs
- SpinLock.cs
- TemplateBuilder.cs
- CacheEntry.cs
- TextRenderer.cs
- ApplicationCommands.cs
- HttpCacheVary.cs
- OdbcConnectionString.cs
- Misc.cs
- ConfigurationStrings.cs
- PropertyHelper.cs
- ProxyElement.cs
- XmlWellformedWriter.cs
- ViewCellSlot.cs
- SoapMessage.cs
- SqlDelegatedTransaction.cs
- MessageBox.cs
- ResourceDefaultValueAttribute.cs
- StreamUpgradeBindingElement.cs
- DeclaredTypeValidatorAttribute.cs
- TableLayoutCellPaintEventArgs.cs
- RoleService.cs
- WindowsToolbarItemAsMenuItem.cs
- HandleCollector.cs
- Gdiplus.cs
- WorkItem.cs
- PlatformNotSupportedException.cs
- DBConcurrencyException.cs
- TransformPatternIdentifiers.cs
- MappingModelBuildProvider.cs
- FusionWrap.cs
- RowVisual.cs
- NodeLabelEditEvent.cs
- ValidationErrorInfo.cs
- TrackBar.cs
- ManipulationStartingEventArgs.cs
- MultiSelectRootGridEntry.cs
- FileUtil.cs
- HideDisabledControlAdapter.cs
- MergePropertyDescriptor.cs
- ToolboxCategory.cs
- DataGridViewCellLinkedList.cs
- SafeWaitHandle.cs
- TemplateAction.cs
- DataDocumentXPathNavigator.cs
- Wildcard.cs
- RenderContext.cs
- SmtpFailedRecipientException.cs
- FactoryRecord.cs
- SvcMapFileLoader.cs
- PersistenceProviderElement.cs
- HttpListenerResponse.cs
- Overlapped.cs
- ADConnectionHelper.cs
- Viewport3DVisual.cs
- OleDbCommand.cs
- XmlStreamNodeWriter.cs
- BasicBrowserDialog.designer.cs
- XmlNavigatorStack.cs
- SqlAggregateChecker.cs
- XmlHierarchicalEnumerable.cs
- TargetInvocationException.cs
- PaginationProgressEventArgs.cs