AvTraceFormat.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 / Base / MS / Internal / AvTraceFormat.cs / 1305600 / AvTraceFormat.cs

                            /****************************************************************************\ 
*
* File: AvTraceFormat.cs
*
* Copyright (C) by Microsoft Corporation.  All rights reserved. 
*
\***************************************************************************/ 
 

namespace MS.Internal 
{

    // This class represents the details of a single trace (the ID, a formatted message string, and parameter labels).
    // This is used by the AvTrace class and callers. 

    internal class AvTraceFormat : AvTraceDetails 
    { 
        public AvTraceFormat( AvTraceDetails details, object[] args ) : base(details.Id, details.Labels)
        { 
            _message = string.Format(System.Globalization.CultureInfo.InvariantCulture, details.Labels[0], args);
        }

        // main message (formatted) 
        public override string Message
        { 
            get 
            {
                return _message; 
            }
        }

        string _message; 
    }
 
} 


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