DSGeneratorProblem.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 / DSGeneratorProblem.cs / 1 / DSGeneratorProblem.cs

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

 
    internal enum ProblemSeverity {
        Unknown         = 0, 
        Warning         = 1, 
        NonFatalError   = 2,
        FatalError      = 3 
    }

    internal sealed class DSGeneratorProblem {
        private string message = null; 
        private ProblemSeverity severity = ProblemSeverity.Unknown;
        private DataSourceComponent problemSource; 
 
        internal string Message {
            get { 
                return message;
            }
        }
 
        internal ProblemSeverity Severity {
            get { 
                return severity; 
            }
        } 

        internal DataSourceComponent ProblemSource {
            get {
                return problemSource; 
            }
        } 
 
        internal DSGeneratorProblem(string message, ProblemSeverity severity, DataSourceComponent problemSource) {
            Debug.Assert(!StringUtil.Empty(message), "DSGeneratorProblem Constructor: message shouldn't be null or empty."); 
            Debug.Assert(severity != ProblemSeverity.Unknown, "DSGeneratorProblem Constructor: severity shouldn't be Unknown.");

            this.message        = message;
            this.severity       = severity; 
            this.problemSource  = problemSource;
        } 
    } 
}

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