-
Notifications
You must be signed in to change notification settings - Fork 2
/
Trace.xml
417 lines (416 loc) · 26.6 KB
/
Trace.xml
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
<Type Name="Trace" FullName="Android.OS.Trace">
<TypeSignature Language="C#" Value="public sealed class Trace : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit Trace extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Android.OS.Trace" />
<TypeSignature Language="F#" Value="type Trace = class
 inherit Object" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Java.Lang.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/os/Trace", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/os/Trace", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="18">
<summary>Writes trace events to the system trace buffer.</summary>
<remarks>
<para>Writes trace events to the system trace buffer. These trace events can be
collected and visualized using the Systrace tool.</para>
<para>This tracing mechanism is independent of the method tracing mechanism
offered by <c>Debug#startMethodTracing</c>. In particular, it enables
tracing of events that occur across multiple processes.</para>
<para>For information about using the Systrace tool, read <see href="https://developer.android.com/tools/debugging/systrace.html">Analyzing Display and Performance
with Systrace</see>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace" title="Reference documentation">Java documentation for <code>android.os.Trace</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 18" />
</Docs>
<Members>
<Member MemberName="BeginAsyncSection">
<MemberSignature Language="C#" Value="public static void BeginAsyncSection (string methodName, int cookie);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void BeginAsyncSection(string methodName, int32 cookie) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.OS.Trace.BeginAsyncSection(System.String,System.Int32)" />
<MemberSignature Language="F#" Value="static member BeginAsyncSection : string * int -> unit" Usage="Android.OS.Trace.BeginAsyncSection (methodName, cookie)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("beginAsyncSection", "(Ljava/lang/String;I)V", "", ApiSince=29)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("beginAsyncSection", "(Ljava/lang/String;I)V", "", ApiSince=29)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="methodName" Type="System.String" />
<Parameter Name="cookie" Type="System.Int32" />
</Parameters>
<Docs>
<param name="methodName">The method name to appear in the trace.</param>
<param name="cookie">Unique identifier for distinguishing simultaneous events</param>
<summary>Writes a trace message to indicate that a given section of code has
begun.</summary>
<remarks>
<para>Writes a trace message to indicate that a given section of code has
begun. Must be followed by a call to <c>#endAsyncSection(String, int)</c> with the same
methodName and cookie. Unlike <c>#beginSection(String)</c> and <c>#endSection()</c>,
asynchronous events do not need to be nested. The name and cookie used to
begin an event must be used to end it.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace#beginAsyncSection(java.lang.String,%20int)" title="Reference documentation">Java documentation for <code>android.os.Trace.beginAsyncSection(java.lang.String, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="BeginSection">
<MemberSignature Language="C#" Value="public static void BeginSection (string sectionName);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void BeginSection(string sectionName) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.OS.Trace.BeginSection(System.String)" />
<MemberSignature Language="F#" Value="static member BeginSection : string -> unit" Usage="Android.OS.Trace.BeginSection sectionName" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("beginSection", "(Ljava/lang/String;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("beginSection", "(Ljava/lang/String;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="sectionName" Type="System.String" />
</Parameters>
<Docs>
<param name="sectionName">The name of the code section to appear in the trace. This may be at
most 127 Unicode code units long.</param>
<summary>Writes a trace message to indicate that a given section of code has begun.</summary>
<remarks>
<para>Writes a trace message to indicate that a given section of code has begun. This call must
be followed by a corresponding call to <c>#endSection()</c> on the same thread.
<p class="note"> At this time the vertical bar character '|', newline character '\n', and
null character '\0' are used internally by the tracing mechanism. If sectionName contains
these characters they will be replaced with a space character in the trace.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace#beginSection(java.lang.String)" title="Reference documentation">Java documentation for <code>android.os.Trace.beginSection(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 18" />
</Docs>
</Member>
<Member MemberName="EndAsyncSection">
<MemberSignature Language="C#" Value="public static void EndAsyncSection (string methodName, int cookie);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void EndAsyncSection(string methodName, int32 cookie) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.OS.Trace.EndAsyncSection(System.String,System.Int32)" />
<MemberSignature Language="F#" Value="static member EndAsyncSection : string * int -> unit" Usage="Android.OS.Trace.EndAsyncSection (methodName, cookie)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("endAsyncSection", "(Ljava/lang/String;I)V", "", ApiSince=29)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("endAsyncSection", "(Ljava/lang/String;I)V", "", ApiSince=29)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="methodName" Type="System.String" />
<Parameter Name="cookie" Type="System.Int32" />
</Parameters>
<Docs>
<param name="methodName">The method name to appear in the trace.</param>
<param name="cookie">Unique identifier for distinguishing simultaneous events</param>
<summary>Writes a trace message to indicate that the current method has ended.</summary>
<remarks>
<para>Writes a trace message to indicate that the current method has ended.
Must be called exactly once for each call to <c>#beginAsyncSection(String, int)</c>
using the same name and cookie.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace#endAsyncSection(java.lang.String,%20int)" title="Reference documentation">Java documentation for <code>android.os.Trace.endAsyncSection(java.lang.String, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="EndSection">
<MemberSignature Language="C#" Value="public static void EndSection ();" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void EndSection() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.OS.Trace.EndSection" />
<MemberSignature Language="F#" Value="static member EndSection : unit -> unit" Usage="Android.OS.Trace.EndSection " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("endSection", "()V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("endSection", "()V", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Writes a trace message to indicate that a given section of code has ended.</summary>
<remarks>
<para>Writes a trace message to indicate that a given section of code has ended. This call must
be preceeded by a corresponding call to <c>#beginSection(String)</c>. Calling this method
will mark the end of the most recently begun section of code, so care must be taken to
ensure that beginSection / endSection pairs are properly nested and called from the same
thread.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace#endSection()" title="Reference documentation">Java documentation for <code>android.os.Trace.endSection()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 18" />
</Docs>
</Member>
<Member MemberName="IsEnabled">
<MemberSignature Language="C#" Value="public static bool IsEnabled { get; }" />
<MemberSignature Language="ILAsm" Value=".property bool IsEnabled" />
<MemberSignature Language="DocId" Value="P:Android.OS.Trace.IsEnabled" />
<MemberSignature Language="F#" Value="static member IsEnabled : bool" Usage="Android.OS.Trace.IsEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isEnabled", "()Z", "", ApiSince=29)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isEnabled", "()Z", "", ApiSince=29)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Checks whether or not tracing is currently enabled.</summary>
<value>true if tracing is currently enabled, false otherwise</value>
<remarks>
<para>Checks whether or not tracing is currently enabled. This is useful to avoid intermediate
string creation for trace sections that require formatting. It is not necessary
to guard all Trace method calls as they internally already check this. However it is
recommended to use this to prevent creating any temporary objects that would then be
passed to those methods to reduce runtime cost when tracing isn't enabled.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace#isEnabled()" title="Reference documentation">Java documentation for <code>android.os.Trace.isEnabled()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="JniPeerMembers">
<MemberSignature Language="C#" Value="public override Java.Interop.JniPeerMembers JniPeerMembers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Java.Interop.JniPeerMembers JniPeerMembers" />
<MemberSignature Language="DocId" Value="P:Android.OS.Trace.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.OS.Trace.JniPeerMembers" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Interop.JniPeerMembers</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="SetCounter">
<MemberSignature Language="C#" Value="public static void SetCounter (string counterName, long counterValue);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void SetCounter(string counterName, int64 counterValue) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.OS.Trace.SetCounter(System.String,System.Int64)" />
<MemberSignature Language="F#" Value="static member SetCounter : string * int64 -> unit" Usage="Android.OS.Trace.SetCounter (counterName, counterValue)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("setCounter", "(Ljava/lang/String;J)V", "", ApiSince=29)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("setCounter", "(Ljava/lang/String;J)V", "", ApiSince=29)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="counterName" Type="System.String" />
<Parameter Name="counterValue" Type="System.Int64" />
</Parameters>
<Docs>
<param name="counterName">The counter name to appear in the trace.</param>
<param name="counterValue">The counter value.</param>
<summary>Writes trace message to indicate the value of a given counter.</summary>
<remarks>
<para>Writes trace message to indicate the value of a given counter.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/os/Trace#setCounter(java.lang.String,%20long)" title="Reference documentation">Java documentation for <code>android.os.Trace.setCounter(java.lang.String, long)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdClass">
<MemberSignature Language="C#" Value="protected override IntPtr ThresholdClass { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance native int ThresholdClass" />
<MemberSignature Language="DocId" Value="P:Android.OS.Trace.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.OS.Trace.ThresholdClass" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.IntPtr</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.IntPtr" /> which contains the <c>java.lang.Class</c> JNI value corresponding to this type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdType">
<MemberSignature Language="C#" Value="protected override Type ThresholdType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type ThresholdType" />
<MemberSignature Language="DocId" Value="P:Android.OS.Trace.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.OS.Trace.ThresholdType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.Type" /> which provides the declaring type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
</Members>
</Type>