SqlServer2KCompatibilityAnnotation.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DLinq / Dlinq / SqlClient / Common / SqlServer2KCompatibilityAnnotation.cs / 1 / SqlServer2KCompatibilityAnnotation.cs

                            using System; 
using System.Collections.Generic;
using System.Text;

namespace System.Data.Linq.SqlClient { 

    ///  
    /// Annotation which indicates that the given node will cause a compatibility problem 
    /// for the indicated set of providers.
    ///  
    internal class SqlServerCompatibilityAnnotation : SqlNodeAnnotation {
        SqlProvider.ProviderMode[] providers;

        ///  
        /// Constructor
        ///  
        /// The compatibility message. 
        /// The set of providers this compatibility issue applies to.
        internal SqlServerCompatibilityAnnotation(string message, params SqlProvider.ProviderMode[] providers) 
            : base(message) {
            this.providers = providers;
        }
 
        /// 
        /// Returns true if this annotation applies to the specified provider. 
        ///  
        internal bool AppliesTo(SqlProvider.ProviderMode provider) {
            foreach (SqlProvider.ProviderMode p in providers) { 
                if (p == provider) {
                    return true;
                }
            } 
            return false;
        } 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Collections.Generic;
using System.Text;

namespace System.Data.Linq.SqlClient { 

    ///  
    /// Annotation which indicates that the given node will cause a compatibility problem 
    /// for the indicated set of providers.
    ///  
    internal class SqlServerCompatibilityAnnotation : SqlNodeAnnotation {
        SqlProvider.ProviderMode[] providers;

        ///  
        /// Constructor
        ///  
        /// The compatibility message. 
        /// The set of providers this compatibility issue applies to.
        internal SqlServerCompatibilityAnnotation(string message, params SqlProvider.ProviderMode[] providers) 
            : base(message) {
            this.providers = providers;
        }
 
        /// 
        /// Returns true if this annotation applies to the specified provider. 
        ///  
        internal bool AppliesTo(SqlProvider.ProviderMode provider) {
            foreach (SqlProvider.ProviderMode p in providers) { 
                if (p == provider) {
                    return true;
                }
            } 
            return false;
        } 
    } 
}

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