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

TraceEventCache.jvm.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0f12b5dce7c40bf650b200ca494cb40ee8ba0cb (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
///
/// Stub class 
///

#if NET_2_0

using System;
using System.Collections;
using System.Text;
using System.Threading;

namespace System.Diagnostics
{
    [MonoTODO]
    public class TraceEventCache
    {
        [MonoTODO]
        public string Callstack
        {
            get { throw new NotImplementedException(); }
        }

        [MonoTODO]
        public DateTime DateTime
        {
            get { throw new NotImplementedException(); }
        }

        [MonoTODO]
        public Stack LogicalOperationStack
        {
            get { throw new NotImplementedException(); }
        }

        [MonoTODO]
        public int ProcessId
        {
            get { throw new NotImplementedException(); }
        }

        [MonoTODO]
        public string ThreadId
        {
            get { throw new NotImplementedException(); }
        }

        [MonoTODO]
        public long Timestamp
        {
            get { throw new NotImplementedException(); }
        }
    }
}

#endif