SrgsItemList.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Recognition / SrgsGrammar / SrgsItemList.cs / 1 / SrgsItemList.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: 
//      Srgs Item only Element List. Derived from SrgsItemList
// 
// History:
//		5/1/2004	jeanfp		Created from the Kurosawa Code
//---------------------------------------------------------------------------
 
using System;
using System.Collections.ObjectModel; 
using System.Speech.Internal; 

namespace System.Speech.Recognition.SrgsGrammar 
{
    /// 
    /// Summary description for SrgsItemList.
    ///  
    [Serializable]
    internal class SrgsItemList : Collection 
    { 
        //*******************************************************************
        // 
        // Interfaces Implementations
        //
        //*******************************************************************
 
        #region Interfaces Implementations
 
        protected override void InsertItem (int index, SrgsItem item) 
        {
            Helpers.ThrowIfNull (item, "item"); 

            base.InsertItem (index, item);
        }
 
        #endregion
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: 
//      Srgs Item only Element List. Derived from SrgsItemList
// 
// History:
//		5/1/2004	jeanfp		Created from the Kurosawa Code
//---------------------------------------------------------------------------
 
using System;
using System.Collections.ObjectModel; 
using System.Speech.Internal; 

namespace System.Speech.Recognition.SrgsGrammar 
{
    /// 
    /// Summary description for SrgsItemList.
    ///  
    [Serializable]
    internal class SrgsItemList : Collection 
    { 
        //*******************************************************************
        // 
        // Interfaces Implementations
        //
        //*******************************************************************
 
        #region Interfaces Implementations
 
        protected override void InsertItem (int index, SrgsItem item) 
        {
            Helpers.ThrowIfNull (item, "item"); 

            base.InsertItem (index, item);
        }
 
        #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