TraceHwndHost.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / TraceHwndHost.cs / 1305600 / TraceHwndHost.cs

                            #define TRACE 

//----------------------------------------------------------------------------
//
//  
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
// 
// Description: Defines TraceHwndHost class, for providing debugging information
//              for HwndHosts 
//
//---------------------------------------------------------------------------

using System; 
using System.Collections;
using System.ComponentModel; 
using System.Diagnostics; 
using System.Reflection;
using System.Text; 
using System.Windows;
using System.Windows.Data;
using MS.Internal.Data;
using MS.Win32; 

namespace MS.Internal 
{ 
    /// 
    /// Provides a central mechanism for providing debugging information 
    /// to aid programmers in using HwndHost.
    /// Helpers are defined here.
    /// The rest of the class is generated; see also: AvTraceMessage.txt and genTraceStrings.pl
    ///  
    internal static partial class TraceHwndHost
    { 
        // ----------------------------------------------------------------- 
        // Constructors
        // ----------------------------------------------------------------- 

        static TraceHwndHost()
        {
            // This tells tracing that IsEnabled should be true if we're in the debugger, 
            // even if the registry flag isn't turned on.  By default, IsEnabled is only
            // true if the registry is set. 
            _avTrace.EnabledByDebugger = true; 
        }
    } 
}


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