AvTraceDetails.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 / wpf / src / Base / MS / Internal / AvTraceDetails.cs / 1 / AvTraceDetails.cs

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

namespace MS.Internal 
{

    // This class represents the details of a single trace (the ID and message strings).
    // This is used by the AvTrace class and callers. 

    internal class AvTraceDetails 
    { 
        public AvTraceDetails( int id, string[] labels )
        { 
            _id = id;
            _labels = labels;
        }
 
        // Each trace has a differnt ID
        public int Id 
        { 
            get
            { 
                return _id;
            }
        }
 
        // base trace message/format-string
        public virtual string Message 
        { 
            get
            { 
                return _labels[0];
            }
        }
 
        // parameter labels (with base trace message/format-string at index 0)
        public string[] Labels 
        { 
            get
            { 
                return _labels;
            }
        }
 
        int _id;
        string[] _labels; 
    } 

} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
/****************************************************************************\ 
*
* File: AvTraceDetails.cs
*
* Copyright (C) by Microsoft Corporation.  All rights reserved. 
*
\***************************************************************************/ 
 

namespace MS.Internal 
{

    // This class represents the details of a single trace (the ID and message strings).
    // This is used by the AvTrace class and callers. 

    internal class AvTraceDetails 
    { 
        public AvTraceDetails( int id, string[] labels )
        { 
            _id = id;
            _labels = labels;
        }
 
        // Each trace has a differnt ID
        public int Id 
        { 
            get
            { 
                return _id;
            }
        }
 
        // base trace message/format-string
        public virtual string Message 
        { 
            get
            { 
                return _labels[0];
            }
        }
 
        // parameter labels (with base trace message/format-string at index 0)
        public string[] Labels 
        { 
            get
            { 
                return _labels;
            }
        }
 
        int _id;
        string[] _labels; 
    } 

} 


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