SchemaName.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 / System / data / design / SchemaName.cs / 1 / SchemaName.cs

                             
//------------------------------------------------------------------------------
// 
//    Copyright (c) Microsoft Corporation. All Rights Reserved.
//    Information Contained Herein is Proprietary and Confidential. 
// 
//----------------------------------------------------------------------------- 
 
namespace System.Data.Design {
 
    internal class SchemaName {

        /// 
        /// Private contstructor to avoid class being instantiated. 
        /// 
        private SchemaName() { 
        } 

        internal const string DataSourcePrefix = "msdatasource"; 
        internal const string DataSourceNamespace = "urn:schemas-microsoft-com:xml-msdatasource";
        internal const string DataSourceTempTargetNamespace = "";

        internal const string SchemaNodeName = "schema"; 
        internal const string AnnotationNodeName = "annotation";
        internal const string AppInfoNodeName = "appinfo"; 
        internal const string AppInfoSourceName = "source"; 

        internal const string DataSourceRoot = "DataSource"; 
        internal const string DbSource = "DbSource";
        internal const string Connection = "Connection";
        internal const string RadTable = "TableAdapter";
        internal const string OldRadTable = "DbTable"; 
        internal const string DbCommand = "DbCommand";
        internal const string Parameter = "Parameter"; 
    } 
}
 

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