Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TraceEventDetails.cs « Diagnostics « Composition « ComponentModel « System « UnitTestFramework « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8883b0f526a89321b3c56a82b78750b25f24012e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
#if !SILVERLIGHT

using System;
using System.Diagnostics;

namespace System.ComponentModel.Composition.Diagnostics
{
    [CLSCompliant(false)]
    public class TraceEventDetails
    {
        public TraceEventDetails(TraceEventCache eventCache, string source, TraceEventType eventType, TraceId id, string format, params object[] args)
        {
            EventCache = eventCache;
            Source = source;
            EventType = eventType;
            Id = id;
            Format = format;
            Args = args;
        }

        public TraceEventCache EventCache
        {
            get;
            private set;
        }

        public string Source
        {
            get;
            private set;
        }

        public TraceEventType EventType
        {
            get;
            private set;
        }

        public TraceId Id
        {
            get;
            private set;
        }

        public string Format
        {
            get;
            private set;
        }

        public object[] Args
        {
            get;
            private set;
        }
    }
}

#endif