DesignerDataStoredProcedure.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DesignerDataStoredProcedure.cs / 1 / DesignerDataStoredProcedure.cs

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

namespace System.ComponentModel.Design.Data { 
 
    using System;
    using System.Collections; 

    /// 
    /// Represents a single stored procedure in a data connection. A
    /// collection of this type is returned from 
    /// IDesignerDataSchema.GetSchemaItems when it is passed
    /// DesignerDataSchemaClass.StoredProcedures. 
    ///  
    public abstract class DesignerDataStoredProcedure {
 
        private string _name;
        private string _owner;
        private ICollection _parameters;
 
        /// 
        ///  
        protected DesignerDataStoredProcedure(string name) { 
            _name = name;
        } 

        /// 
        /// 
        protected DesignerDataStoredProcedure(string name, string owner) { 
            _name = name;
            _owner = owner; 
        } 

        ///  
        /// The name of the stored procedure.
        /// 
        public string Name {
            get { 
                return _name;
            } 
        } 

        ///  
        /// The owner of the stored procedure.
        /// 
        public string Owner {
            get { 
                return _owner;
            } 
        } 

        ///  
        /// The collection of parameters accepted by the stored procedure.
        /// 
        public ICollection Parameters {
            get { 
                if (_parameters == null) {
                    _parameters = CreateParameters(); 
                } 
                return _parameters;
            } 
        }

        /// 
        /// This method will be called the first time the Parameters property 
        /// is accessed. It should return a collection of
        /// DesignerDataParameter objects representing this stored procedure's 
        /// parameters. If there are no parameters, it should return an empty 
        /// collection (not null).
        ///  
        protected abstract ICollection CreateParameters();
    }
}
 

// 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