InternalBase.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Common / Utils / InternalBase.cs / 1 / InternalBase.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

 
using System;
using System.Collections;
using System.Text;
 
namespace System.Data.Common.Utils {
    // A basic class from which all classes derive so that ToString can be 
    // more controlled 
    internal abstract class InternalBase {
 
        // effects: Modify builder to contain a compact string representation
        // of this
        internal abstract void ToCompactString(StringBuilder builder);
 
        // effects: Modify builder to contain a verbose string representation
        // of this 
        internal virtual void ToFullString(StringBuilder builder) { 
            ToCompactString(builder);
        } 

        // Check the internal state of the data structure -- if it is invalid
        // throw an exception. If it is ok, return true. This signature allows
        // this method to be used in Debug.Assert and for regular use to catch 
        // internal errors
        internal virtual bool CheckRepInvariant() { 
            // As we keep adding Validate to the rest of the code, 
            // we will make this method abstract
            return true; 
        }

        public override string ToString() {
 			StringBuilder builder = new StringBuilder(); 
            ToCompactString(builder);
            return builder.ToString(); 
        } 

        internal virtual string ToFullString() { 
			StringBuilder builder = new StringBuilder();
            ToFullString(builder);
            return builder.ToString();
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

 
using System;
using System.Collections;
using System.Text;
 
namespace System.Data.Common.Utils {
    // A basic class from which all classes derive so that ToString can be 
    // more controlled 
    internal abstract class InternalBase {
 
        // effects: Modify builder to contain a compact string representation
        // of this
        internal abstract void ToCompactString(StringBuilder builder);
 
        // effects: Modify builder to contain a verbose string representation
        // of this 
        internal virtual void ToFullString(StringBuilder builder) { 
            ToCompactString(builder);
        } 

        // Check the internal state of the data structure -- if it is invalid
        // throw an exception. If it is ok, return true. This signature allows
        // this method to be used in Debug.Assert and for regular use to catch 
        // internal errors
        internal virtual bool CheckRepInvariant() { 
            // As we keep adding Validate to the rest of the code, 
            // we will make this method abstract
            return true; 
        }

        public override string ToString() {
 			StringBuilder builder = new StringBuilder(); 
            ToCompactString(builder);
            return builder.ToString(); 
        } 

        internal virtual string ToFullString() { 
			StringBuilder builder = new StringBuilder();
            ToFullString(builder);
            return builder.ToString();
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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