-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathBeginCallbacks.cs
209 lines (198 loc) · 12.2 KB
/
BeginCallbacks.cs
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// ==============================================
// This file is autogenerated
// ==============================================
namespace Microsoft.Diagnostics.Instrumentation.Extensions.Base
{
using System;
using System.Collections.Generic;
/// <summary>
/// This type if generic to avoid problems merging it to mscorlib
/// </summary>
/// <typeparam name="T">This generic attribute has no purpose</typeparam>
internal class BCB<T>
{
public static int Lock0;
public static int Lock1;
public static int Lock2;
public static int Lock3;
public static int Lock4;
public static int Lock5;
public static int Lock6;
public static int Lock7;
public static int Lock8;
public static int Lock9;
public static int Lock10;
public static int Lock11;
public static int Lock12;
public static int Lock13;
public static int Lock14;
internal static Dictionary<int, Func<object>>
callbacks0 = new Dictionary<int, Func<object>>();
internal static Dictionary<int, Func<object, object>>
callbacks1 = new Dictionary<int, Func<object, object>>();
internal static Dictionary<int, Func<object, object, object>>
callbacks2 = new Dictionary<int, Func<object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object>>
callbacks3 = new Dictionary<int, Func<object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object>>
callbacks4 = new Dictionary<int, Func<object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object>>
callbacks5 = new Dictionary<int, Func<object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object>>
callbacks6 = new Dictionary<int, Func<object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object>>
callbacks7 = new Dictionary<int, Func<object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object>>
callbacks8 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object>>
callbacks9 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object>>
callbacks10 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object>>
callbacks11 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object, object>>
callbacks12 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object, object, object>>
callbacks13 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object, object, object>>();
internal static Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object, object, object, object>>
callbacks14 = new Dictionary<int, Func<object, object, object, object, object, object, object, object, object, object, object, object, object, object, object>>();
}
}
// Underscore _System assembly will be treated as regular System namespace by ImportModule function of Instrumentation Engine.
// This is done to avoid conflicts during compilation
#pragma warning disable CS3008 // Identifier is not CLS-compliant
namespace _System.Diagnostics
#pragma warning restore CS3008 // Identifier is not CLS-compliant
{
using Microsoft.Diagnostics.Instrumentation.Extensions.Base;
using System;
/// <summary>
/// This class defines public contract to register new callbacks
/// </summary>
public partial class DebuggerHiddenAttribute : Attribute
{
public static object ApplicationInsights_OnBegin(int methodId)
{
Func<object> func = null;
if (BCB<int>.callbacks0.TryGetValue(methodId, out func) && (func != null))
return func();
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0)
{
Func<object, object> func = null;
if (BCB<int>.callbacks1.TryGetValue(methodId, out func) && (func != null))
return func(arg0);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1)
{
Func<object, object, object> func = null;
if (BCB<int>.callbacks2.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2)
{
Func<object, object, object, object> func = null;
if (BCB<int>.callbacks3.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3)
{
Func<object, object, object, object, object> func = null;
if (BCB<int>.callbacks4.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4)
{
Func<object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks5.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5)
{
Func<object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks6.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6)
{
Func<object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks7.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7)
{
Func<object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks8.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8)
{
Func<object, object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks9.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9)
{
Func<object, object, object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks10.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, object arg10)
{
Func<object, object, object, object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks11.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, object arg10, object arg11)
{
Func<object, object, object, object, object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks12.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, object arg10, object arg11, object arg12)
{
Func<object, object, object, object, object, object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks13.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12);
else
return null;
}
public static object ApplicationInsights_OnBegin(int methodId, object arg0, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, object arg10, object arg11, object arg12, object arg13)
{
Func<object, object, object, object, object, object, object, object, object, object, object, object, object, object, object> func = null;
if (BCB<int>.callbacks14.TryGetValue(methodId, out func) && (func != null))
return func(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13);
else
return null;
}
}
}