SemanticResultValue.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Recognition / SemanticResultValue.cs / 1 / SemanticResultValue.cs

                            //------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------- 

using System.Collections.Generic; 
using System.Diagnostics; 
using System.Speech.Internal.GrammarBuilding;
using System.Speech.Internal; 

namespace System.Speech.Recognition
{
    ///  
    ///
    ///  
 
    [DebuggerDisplay ("{_tag.DebugSummary}")]
    public class SemanticResultValue 
    {


        //******************************************************************* 
        //
        // Constructors 
        // 
        //*******************************************************************
 
        #region Constructors

        /// 
        /// TODOC 
        /// 
        ///  
        public SemanticResultValue (object value) 
        {
            Helpers.ThrowIfNull (value, "value"); 

            _tag = new TagElement (value);
        }
 
        /// 
        /// TODOC 
        ///  
        /// 
        ///  
        public SemanticResultValue (string phrase, object value)
        {
            Helpers.ThrowIfEmptyOrNull (phrase, "phrase");
            Helpers.ThrowIfNull (value, "value"); 

            _tag = new TagElement (new GrammarBuilderPhrase ((string) phrase.Clone ()), value); 
        } 

        ///  
        /// TODOC
        /// 
        /// 
        ///  
        public SemanticResultValue (GrammarBuilder builder, object value)
        { 
            Helpers.ThrowIfNull (builder, "builder"); 
            Helpers.ThrowIfNull (value, "value");
 
            _tag = new TagElement (builder.Clone (), value);
        }

        #endregion 

 
        //******************************************************************** 
        //
        // Public Methods 
        //
        //*******************************************************************

        #region Public Methods 

        ///  
        /// TODOC 
        /// 
        ///  
        public GrammarBuilder ToGrammarBuilder ()
        {
            return new GrammarBuilder (this);
        } 

        #endregion 
 
        //********************************************************************
        // 
        // Internal Properties
        //
        //********************************************************************
 
        #region Internal Properties
 
        ///  
        ///
        ///  
        internal TagElement Tag
        {
            get
            { 
                return _tag;
            } 
        } 

        #endregion 


        //*******************************************************************
        // 
        // Private Fields
        // 
        //******************************************************************** 

        #region Private Fields 

        private TagElement _tag;

        #endregion 

    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK