-
Notifications
You must be signed in to change notification settings - Fork 2
/
ContactsContract+StatusUpdates.xml
538 lines (538 loc) · 33.3 KB
/
ContactsContract+StatusUpdates.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<Type Name="ContactsContract+StatusUpdates" FullName="Android.Provider.ContactsContract+StatusUpdates">
<TypeSignature Language="C#" Value="public class ContactsContract.StatusUpdates : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi beforefieldinit ContactsContract/StatusUpdates extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Android.Provider.ContactsContract.StatusUpdates" />
<TypeSignature Language="F#" Value="type ContactsContract.StatusUpdates = 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/provider/ContactsContract$StatusUpdates", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/provider/ContactsContract$StatusUpdates", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>A status update is linked to a <c>ContactsContract.Data</c> row and captures
the user's latest status update via the corresponding source, e.</summary>
<remarks>
<para>A status update is linked to a <c>ContactsContract.Data</c> row and captures
the user's latest status update via the corresponding source, e.g.
"Having lunch" via "Google Talk".</para>
<para>There are two ways a status update can be inserted: by explicitly linking
it to a Data row using <c>#DATA_ID</c> or indirectly linking it to a data row
using a combination of <c>#PROTOCOL</c> (or <c>#CUSTOM_PROTOCOL</c>) and
<c>#IM_HANDLE</c>. There is no difference between insert and update, you can use
either.</para>
<para>Inserting or updating a status update for the user's profile requires either using
the <c>#DATA_ID</c> to identify the data row to attach the update to, or
<c>StatusUpdates#PROFILE_CONTENT_URI</c> to ensure that the change is scoped to the
profile.</para>
<para>You cannot use <c>ContentResolver#update</c> to change a status, but
<c>ContentResolver#insert</c> will replace the latests status if it already
exists.</para>
<para>Use <c>ContentResolver#bulkInsert(Uri, ContentValues[])</c> to insert/update statuses
for multiple contacts at once.</para>
<para><h3>Columns</h3>
<table class="jd-sumtable">
<tr>
<th colspan='4'>StatusUpdates</th>
</tr>
<tr>
<td>long</td>
<td><c>#DATA_ID</c></td>
<td>read/write</td>
<td>Reference to the <c>Data#_ID</c> entry that owns this presence. If this
field is <i>not</i> specified, the provider will attempt to find a data row
that matches the <c>#PROTOCOL</c> (or <c>#CUSTOM_PROTOCOL</c>) and
<c>#IM_HANDLE</c> columns.
</td>
</tr>
<tr>
<td>long</td>
<td><c>#PROTOCOL</c></td>
<td>read/write</td>
<td>See <c>CommonDataKinds.Im</c> for a list of defined protocol constants.</td>
</tr>
<tr>
<td>String</td>
<td><c>#CUSTOM_PROTOCOL</c></td>
<td>read/write</td>
<td>Name of the custom protocol. Should be supplied along with the <c>#PROTOCOL</c> value
<c>ContactsContract.CommonDataKinds.Im#PROTOCOL_CUSTOM</c>. Should be null or
omitted if <c>#PROTOCOL</c> value is not
<c>ContactsContract.CommonDataKinds.Im#PROTOCOL_CUSTOM</c>.</td>
</tr>
<tr>
<td>String</td>
<td><c>#IM_HANDLE</c></td>
<td>read/write</td>
<td> The IM handle the presence item is for. The handle is scoped to
<c>#PROTOCOL</c>.</td>
</tr>
<tr>
<td>String</td>
<td><c>#IM_ACCOUNT</c></td>
<td>read/write</td>
<td>The IM account for the local user that the presence data came from.</td>
</tr>
<tr>
<td>int</td>
<td><c>#PRESENCE</c></td>
<td>read/write</td>
<td>Contact IM presence status. The allowed values are:</para>
<para><ul>
<li><c>#OFFLINE</c></li>
<li><c>#INVISIBLE</c></li>
<li><c>#AWAY</c></li>
<li><c>#IDLE</c></li>
<li><c>#DO_NOT_DISTURB</c></li>
<li><c>#AVAILABLE</c></li>
</ul></para>
<para>Since presence status is inherently volatile, the content provider
may choose not to store this field in long-term storage.</para>
<para></td>
</tr>
<tr>
<td>int</td>
<td><c>#CHAT_CAPABILITY</c></td>
<td>read/write</td>
<td>Contact IM chat compatibility value. The allowed values combinations of the following
flags. If None of these flags is set, the device can only do text messaging.</para>
<para><ul>
<li><c>#CAPABILITY_HAS_VIDEO</c></li>
<li><c>#CAPABILITY_HAS_VOICE</c></li>
<li><c>#CAPABILITY_HAS_CAMERA</c></li>
</ul></para>
<para>Since chat compatibility is inherently volatile as the contact's availability moves from
one device to another, the content provider may choose not to store this field in long-term
storage.</para>
<para></td>
</tr>
<tr>
<td>String</td>
<td><c>#STATUS</c></td>
<td>read/write</td>
<td>Contact's latest status update, e.g. "having toast for breakfast"</td>
</tr>
<tr>
<td>long</td>
<td><c>#STATUS_TIMESTAMP</c></td>
<td>read/write</td>
<td>The absolute time in milliseconds when the status was
entered by the user. If this value is not provided, the provider will follow
this logic: if there was no prior status update, the value will be left as null.
If there was a prior status update, the provider will default this field
to the current time.</td>
</tr>
<tr>
<td>String</td>
<td><c>#STATUS_RES_PACKAGE</c></td>
<td>read/write</td>
<td> The package containing resources for this status: label and icon.</td>
</tr>
<tr>
<td>long</td>
<td><c>#STATUS_LABEL</c></td>
<td>read/write</td>
<td>The resource ID of the label describing the source of contact status,
e.g. "Google Talk". This resource is scoped by the
<c>#STATUS_RES_PACKAGE</c>.</td>
</tr>
<tr>
<td>long</td>
<td><c>#STATUS_ICON</c></td>
<td>read/write</td>
<td>The resource ID of the icon for the source of contact status. This
resource is scoped by the <c>#STATUS_RES_PACKAGE</c>.</td>
</tr>
</table></para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates</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 5" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected StatusUpdates (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Provider.ContactsContract.StatusUpdates.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Provider.ContactsContract.StatusUpdates : nativeint * Android.Runtime.JniHandleOwnership -> Android.Provider.ContactsContract.StatusUpdates" Usage="new Android.Provider.ContactsContract.StatusUpdates (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">A <see cref="T:System.IntPtr" />containing a Java Native Interface (JNI) object reference.</param>
<param name="transfer">A <see cref="T:Android.Runtime.JniHandleOwnership" />indicating how to handle <paramref name="javaReference" /></param>
<summary>A constructor used when creating managed representations of JNI objects; called by the runtime.</summary>
<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="ContentItemType">
<MemberSignature Language="C#" Value="public const string ContentItemType;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string ContentItemType" />
<MemberSignature Language="DocId" Value="F:Android.Provider.ContactsContract.StatusUpdates.ContentItemType" />
<MemberSignature Language="F#" Value="val mutable ContentItemType : string" Usage="Android.Provider.ContactsContract.StatusUpdates.ContentItemType" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("CONTENT_ITEM_TYPE")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("CONTENT_ITEM_TYPE")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>The MIME type of a <c>#CONTENT_URI</c> subdirectory of a single
status update detail.</summary>
<remarks>
<para>The MIME type of a <c>#CONTENT_URI</c> subdirectory of a single
status update detail.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates#CONTENT_ITEM_TYPE" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates.CONTENT_ITEM_TYPE</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 5" />
</Docs>
</Member>
<Member MemberName="ContentType">
<MemberSignature Language="C#" Value="public const string ContentType;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string ContentType" />
<MemberSignature Language="DocId" Value="F:Android.Provider.ContactsContract.StatusUpdates.ContentType" />
<MemberSignature Language="F#" Value="val mutable ContentType : string" Usage="Android.Provider.ContactsContract.StatusUpdates.ContentType" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("CONTENT_TYPE")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("CONTENT_TYPE")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>The MIME type of <c>#CONTENT_URI</c> providing a directory of
status update details.</summary>
<remarks>
<para>The MIME type of <c>#CONTENT_URI</c> providing a directory of
status update details.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates#CONTENT_TYPE" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates.CONTENT_TYPE</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 5" />
</Docs>
</Member>
<Member MemberName="ContentUri">
<MemberSignature Language="C#" Value="public static Android.Net.Uri? ContentUri { get; }" />
<MemberSignature Language="ILAsm" Value=".property class Android.Net.Uri ContentUri" />
<MemberSignature Language="DocId" Value="P:Android.Provider.ContactsContract.StatusUpdates.ContentUri" />
<MemberSignature Language="F#" Value="static member ContentUri : Android.Net.Uri" Usage="Android.Provider.ContactsContract.StatusUpdates.ContentUri" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("CONTENT_URI")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("CONTENT_URI")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Net.Uri</ReturnType>
</ReturnValue>
<Docs>
<summary>The content:// style URI for this table</summary>
<value>To be added.</value>
<remarks>
<para>The content:// style URI for this table</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates#CONTENT_URI" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates.CONTENT_URI</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 5" />
</Docs>
</Member>
<Member MemberName="GetPresenceIconResourceId">
<MemberSignature Language="C#" Value="public static int GetPresenceIconResourceId (Android.Provider.StatusPresence status);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 GetPresenceIconResourceId(valuetype Android.Provider.StatusPresence status) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Provider.ContactsContract.StatusUpdates.GetPresenceIconResourceId(Android.Provider.StatusPresence)" />
<MemberSignature Language="F#" Value="static member GetPresenceIconResourceId : Android.Provider.StatusPresence -> int" Usage="Android.Provider.ContactsContract.StatusUpdates.GetPresenceIconResourceId status" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPresenceIconResourceId", "(I)I", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPresenceIconResourceId", "(I)I", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="status" Type="Android.Provider.StatusPresence">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="status">the status to get the icon for</param>
<summary>Gets the resource ID for the proper presence icon.</summary>
<returns>the resource ID for the proper presence icon</returns>
<remarks>
<para>Gets the resource ID for the proper presence icon.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates#getPresenceIconResourceId(int)" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates.getPresenceIconResourceId(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>
<since version="Added in API level 5" />
</Docs>
</Member>
<Member MemberName="GetPresencePrecedence">
<MemberSignature Language="C#" Value="public static int GetPresencePrecedence (Android.Provider.StatusPresence status);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 GetPresencePrecedence(valuetype Android.Provider.StatusPresence status) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Provider.ContactsContract.StatusUpdates.GetPresencePrecedence(Android.Provider.StatusPresence)" />
<MemberSignature Language="F#" Value="static member GetPresencePrecedence : Android.Provider.StatusPresence -> int" Usage="Android.Provider.ContactsContract.StatusUpdates.GetPresencePrecedence status" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPresencePrecedence", "(I)I", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPresencePrecedence", "(I)I", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="status" Type="Android.Provider.StatusPresence">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="status">The status code.</param>
<summary>Returns the precedence of the status code the higher number being the higher precedence.</summary>
<returns>An integer representing the precedence, 0 being the lowest.</returns>
<remarks>
<para>Returns the precedence of the status code the higher number being the higher precedence.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates#getPresencePrecedence(int)" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates.getPresencePrecedence(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>
<since version="Added in API level 5" />
</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.Provider.ContactsContract.StatusUpdates.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.Provider.ContactsContract.StatusUpdates.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="ProfileContentUri">
<MemberSignature Language="C#" Value="public static Android.Net.Uri? ProfileContentUri { get; }" />
<MemberSignature Language="ILAsm" Value=".property class Android.Net.Uri ProfileContentUri" />
<MemberSignature Language="DocId" Value="P:Android.Provider.ContactsContract.StatusUpdates.ProfileContentUri" />
<MemberSignature Language="F#" Value="static member ProfileContentUri : Android.Net.Uri" Usage="Android.Provider.ContactsContract.StatusUpdates.ProfileContentUri" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("PROFILE_CONTENT_URI")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("PROFILE_CONTENT_URI")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Net.Uri</ReturnType>
</ReturnValue>
<Docs>
<summary>The content:// style URI for this table, specific to the user's profile.</summary>
<value>To be added.</value>
<remarks>
<para>The content:// style URI for this table, specific to the user's profile.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/provider/ContactsContract.StatusUpdates#PROFILE_CONTENT_URI" title="Reference documentation">Java documentation for <code>android.provider.ContactsContract.StatusUpdates.PROFILE_CONTENT_URI</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 14" />
</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.Provider.ContactsContract.StatusUpdates.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.Provider.ContactsContract.StatusUpdates.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.Provider.ContactsContract.StatusUpdates.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.Provider.ContactsContract.StatusUpdates.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>