-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathFileStore.xml
More file actions
725 lines (725 loc) · 47.9 KB
/
Copy pathFileStore.xml
File metadata and controls
725 lines (725 loc) · 47.9 KB
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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<Type Name="FileStore" FullName="Java.Nio.FileNio.FileStore">
<TypeSignature Language="C#" Value="public abstract class FileStore : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit FileStore extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Java.Nio.FileNio.FileStore" />
<TypeSignature Language="F#" Value="type FileStore = 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("java/nio/file/FileStore", ApiSince=26, DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("java/nio/file/FileStore", ApiSince=26, DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Storage for files.</summary>
<remarks>
<para>Storage for files. A <c>FileStore</c> represents a storage pool, device,
partition, volume, concrete file system or other implementation specific means
of file storage. The <c>FileStore</c> for where a file is stored is obtained
by invoking the <c>Files#getFileStore getFileStore</c> method, or all file
stores can be enumerated by invoking the <c>FileSystem#getFileStores
getFileStores</c> method.</para>
<para>In addition to the methods defined by this class, a file store may support
one or more <c>FileStoreAttributeView FileStoreAttributeView</c> classes
that provide a read-only or updatable view of a set of file store attributes.</para>
<para>Added in 1.7.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore</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>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected FileStore ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "()V", "", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "()V", "", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters />
<Docs>
<summary>Initializes a new instance of this class.</summary>
<remarks>
<para>Initializes a new instance of this class.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#FileStore()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.FileStore()</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=".ctor">
<MemberSignature Language="C#" Value="protected FileStore (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:Java.Nio.FileNio.FileStore.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Java.Nio.FileNio.FileStore : nativeint * Android.Runtime.JniHandleOwnership -> Java.Nio.FileNio.FileStore" Usage="new Java.Nio.FileNio.FileStore (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">To be added.</param>
<param name="transfer">To be added.</param>
<summary>To be added.</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="BlockSize">
<MemberSignature Language="C#" Value="public virtual long BlockSize { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 BlockSize" />
<MemberSignature Language="DocId" Value="P:Java.Nio.FileNio.FileStore.BlockSize" />
<MemberSignature Language="F#" Value="member this.BlockSize : int64" Usage="Java.Nio.FileNio.FileStore.BlockSize" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android33.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android33.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getBlockSize", "()J", "GetGetBlockSizeHandler", ApiSince=33)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getBlockSize", "()J", "GetGetBlockSizeHandler", ApiSince=33)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns the number of bytes per block in this file store.</summary>
<value>a positive value representing the block size of this file store,
in bytes</value>
<remarks>
<para>Returns the number of bytes per block in this file store.</para>
<para>File storage is typically organized into discrete sequences of bytes
called <i>blocks</i>. A block is the smallest storage unit of a file store.
Every read and write operation is performed on a multiple of blocks.</para>
<para>Added in 10.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#getBlockSize()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.getBlockSize()</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="GetAttribute">
<MemberSignature Language="C#" Value="public abstract Java.Lang.Object? GetAttribute (string? attribute);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Lang.Object GetAttribute(string attribute) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.GetAttribute(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetAttribute : string -> Java.Lang.Object" Usage="fileStore.GetAttribute attribute" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getAttribute", "(Ljava/lang/String;)Ljava/lang/Object;", "GetGetAttribute_Ljava_lang_String_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getAttribute", "(Ljava/lang/String;)Ljava/lang/Object;", "GetGetAttribute_Ljava_lang_String_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="attribute" Type="System.String" />
</Parameters>
<Docs>
<param name="attribute">the attribute to read</param>
<summary>Reads the value of a file store attribute.</summary>
<returns>the attribute value; <c>null</c> may be valid for some
attributes</returns>
<remarks>
<para>Reads the value of a file store attribute.</para>
<para>The <c>attribute</c> parameter identifies the attribute to be read
and takes the form:
<blockquote>
<i>view-name</i><b>:</b><i>attribute-name</i></blockquote>
where the character <c>':'</c> stands for itself.</para>
<para>
<i>view-name</i> is the <c>FileStoreAttributeView#name name</c> of
a <c>FileStore AttributeView</c> that identifies a set of file attributes.
<i>attribute-name</i> is the name of the attribute.</para>
<para><b>Usage Example:</b>
Suppose we want to know if ZFS compression is enabled (assuming the "zfs"
view is supported):</para>
<code lang="text/java">boolean compression = (Boolean)fs.getAttribute("zfs:compression");
</code>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#getAttribute(java.lang.String)" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.getAttribute(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>
</Docs>
</Member>
<Member MemberName="GetFileStoreAttributeView">
<MemberSignature Language="C#" Value="public abstract Java.Lang.Object? GetFileStoreAttributeView (Java.Lang.Class? type);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Lang.Object GetFileStoreAttributeView(class Java.Lang.Class type) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.GetFileStoreAttributeView(Java.Lang.Class)" />
<MemberSignature Language="F#" Value="abstract member GetFileStoreAttributeView : Java.Lang.Class -> Java.Lang.Object" Usage="fileStore.GetFileStoreAttributeView type" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getFileStoreAttributeView", "(Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView;", "GetGetFileStoreAttributeView_Ljava_lang_Class_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getFileStoreAttributeView", "(Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView;", "GetGetFileStoreAttributeView_Ljava_lang_Class_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Java.Interop.JavaTypeParameters(new System.String[] { "V extends java.nio.file.attribute.FileStoreAttributeView" })]</AttributeName>
<AttributeName Language="F#">[<Java.Interop.JavaTypeParameters(new System.String[] { "V extends java.nio.file.attribute.FileStoreAttributeView" })>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="type" Type="Java.Lang.Class" />
</Parameters>
<Docs>
<param name="<V><V>">The <c>FileStoreAttributeView</c> type</param>
<param name="type">the <c>Class</c> object corresponding to the attribute view</param>
<summary>Returns a <c>FileStoreAttributeView</c> of the given type.</summary>
<returns>a file store attribute view of the specified type or
<c>null</c> if the attribute view is not available</returns>
<remarks>
<para>Returns a <c>FileStoreAttributeView</c> of the given type.</para>
<para>This method is intended to be used where the file store attribute
view defines type-safe methods to read or update the file store attributes.
The <c>type</c> parameter is the type of the attribute view required and
the method returns an instance of that type if supported.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#getFileStoreAttributeView(java.lang.Class%3CV%3E)" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.getFileStoreAttributeView(java.lang.Class<V>)</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="IsReadOnly">
<MemberSignature Language="C#" Value="public abstract bool IsReadOnly { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsReadOnly" />
<MemberSignature Language="DocId" Value="P:Java.Nio.FileNio.FileStore.IsReadOnly" />
<MemberSignature Language="F#" Value="member this.IsReadOnly : bool" Usage="Java.Nio.FileNio.FileStore.IsReadOnly" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isReadOnly", "()Z", "GetIsReadOnlyHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isReadOnly", "()Z", "GetIsReadOnlyHandler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets whether this file store is read-only.</summary>
<value><c>true</c> if and only if this file store is read-only; otherwise, <c>false</c>.</value>
<remarks>
<para>A file store is read-only when it does not support write operations or other changes to files. Attempts to create a file or open an existing file for writing cause an <c>IOException</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#isReadOnly()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.isReadOnly()</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:Java.Nio.FileNio.FileStore.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Java.Nio.FileNio.FileStore.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>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</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="Name">
<MemberSignature Language="C#" Value="public abstract string? Name ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string Name() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.Name" />
<MemberSignature Language="F#" Value="abstract member Name : unit -> string" Usage="fileStore.Name " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("name", "()Ljava/lang/String;", "GetNameHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("name", "()Ljava/lang/String;", "GetNameHandler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns the name of this file store.</summary>
<returns>the name of this file store</returns>
<remarks>
<para>Returns the name of this file store. The format of the name is highly
implementation specific. It will typically be the name of the storage
pool or volume.</para>
<para>The string returned by this method may differ from the string
returned by the <c>Object#toString() toString</c> method.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#name()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.name()</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="SupportsFileAttributeView">
<MemberSignature Language="C#" Value="public abstract bool SupportsFileAttributeView (Java.Lang.Class? type);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool SupportsFileAttributeView(class Java.Lang.Class type) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.SupportsFileAttributeView(Java.Lang.Class)" />
<MemberSignature Language="F#" Value="abstract member SupportsFileAttributeView : Java.Lang.Class -> bool" Usage="fileStore.SupportsFileAttributeView type" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("supportsFileAttributeView", "(Ljava/lang/Class;)Z", "GetSupportsFileAttributeView_Ljava_lang_Class_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("supportsFileAttributeView", "(Ljava/lang/Class;)Z", "GetSupportsFileAttributeView_Ljava_lang_Class_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="type" Type="Java.Lang.Class" />
</Parameters>
<Docs>
<param name="type">the file attribute view type</param>
<summary>Tells whether or not this file store supports the file attributes
identified by the given file attribute view.</summary>
<returns>
<c>true</c> if, and only if, the file attribute view is
supported</returns>
<remarks>
<para>Tells whether or not this file store supports the file attributes
identified by the given file attribute view.</para>
<para>Invoking this method to test if the file store supports <c>BasicFileAttributeView</c> will always return <c>true</c>. In the case of
the default provider, this method cannot guarantee to give the correct
result when the file store is not a local storage device. The reasons for
this are implementation specific and therefore unspecified.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#supportsFileAttributeView(java.lang.Class%3C?%20extends%20java.nio.file.attribute.FileAttributeView%3E)" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.supportsFileAttributeView(java.lang.Class<? extends java.nio.file.attribute.FileAttributeView>)</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="SupportsFileAttributeView">
<MemberSignature Language="C#" Value="public abstract bool SupportsFileAttributeView (string? name);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool SupportsFileAttributeView(string name) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.SupportsFileAttributeView(System.String)" />
<MemberSignature Language="F#" Value="abstract member SupportsFileAttributeView : string -> bool" Usage="fileStore.SupportsFileAttributeView name" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("supportsFileAttributeView", "(Ljava/lang/String;)Z", "GetSupportsFileAttributeView_Ljava_lang_String_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("supportsFileAttributeView", "(Ljava/lang/String;)Z", "GetSupportsFileAttributeView_Ljava_lang_String_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">the <c>FileAttributeView#name name</c> of file attribute view</param>
<summary>Tells whether or not this file store supports the file attributes
identified by the given file attribute view.</summary>
<returns>
<c>true</c> if, and only if, the file attribute view is
supported</returns>
<remarks>
<para>Tells whether or not this file store supports the file attributes
identified by the given file attribute view.</para>
<para>Invoking this method to test if the file store supports <c>BasicFileAttributeView</c>, identified by the name "<c>basic</c>" will
always return <c>true</c>. In the case of the default provider, this
method cannot guarantee to give the correct result when the file store is
not a local storage device. The reasons for this are implementation
specific and therefore unspecified.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#supportsFileAttributeView(java.lang.String)" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.supportsFileAttributeView(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>
</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:Java.Nio.FileNio.FileStore.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Java.Nio.FileNio.FileStore.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>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="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:Java.Nio.FileNio.FileStore.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Java.Nio.FileNio.FileStore.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>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</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="TotalSpace">
<MemberSignature Language="C#" Value="public abstract long TotalSpace { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 TotalSpace" />
<MemberSignature Language="DocId" Value="P:Java.Nio.FileNio.FileStore.TotalSpace" />
<MemberSignature Language="F#" Value="member this.TotalSpace : int64" Usage="Java.Nio.FileNio.FileStore.TotalSpace" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getTotalSpace", "()J", "GetGetTotalSpaceHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getTotalSpace", "()J", "GetGetTotalSpaceHandler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the size of this file store in bytes.</summary>
<value>The size of this file store in bytes, or <c>long.MaxValue</c> if its size exceeds that value.</value>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#getTotalSpace()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.getTotalSpace()</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>
<exception cref="T:Java.IO.IOException">If an I/O error occurs.</exception>
</Docs>
</Member>
<Member MemberName="Type">
<MemberSignature Language="C#" Value="public abstract string? Type ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string Type() cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Nio.FileNio.FileStore.Type" />
<MemberSignature Language="F#" Value="abstract member Type : unit -> string" Usage="fileStore.Type " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("type", "()Ljava/lang/String;", "GetTypeHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("type", "()Ljava/lang/String;", "GetTypeHandler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns the <em>type</em> of this file store.</summary>
<returns>a string representing the type of this file store</returns>
<remarks>
<para>Returns the <em>type</em> of this file store. The format of the string
returned by this method is highly implementation specific. It may
indicate, for example, the format used or if the file store is local
or remote.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#type()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.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>
</Docs>
</Member>
<Member MemberName="UnallocatedSpace">
<MemberSignature Language="C#" Value="public abstract long UnallocatedSpace { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 UnallocatedSpace" />
<MemberSignature Language="DocId" Value="P:Java.Nio.FileNio.FileStore.UnallocatedSpace" />
<MemberSignature Language="F#" Value="member this.UnallocatedSpace : int64" Usage="Java.Nio.FileNio.FileStore.UnallocatedSpace" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getUnallocatedSpace", "()J", "GetGetUnallocatedSpaceHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getUnallocatedSpace", "()J", "GetGetUnallocatedSpaceHandler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the number of unallocated bytes in this file store.</summary>
<value>The number of unallocated bytes, or <c>long.MaxValue</c> if the number exceeds that value.</value>
<remarks>
<para>This value is a hint, not a guarantee; it is most accurate immediately after retrieval and may be affected by external I/O operations.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#getUnallocatedSpace()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.getUnallocatedSpace()</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>
<exception cref="T:Java.IO.IOException">If an I/O error occurs.</exception>
</Docs>
</Member>
<Member MemberName="UsableSpace">
<MemberSignature Language="C#" Value="public abstract long UsableSpace { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 UsableSpace" />
<MemberSignature Language="DocId" Value="P:Java.Nio.FileNio.FileStore.UsableSpace" />
<MemberSignature Language="F#" Value="member this.UsableSpace : int64" Usage="Java.Nio.FileNio.FileStore.UsableSpace" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getUsableSpace", "()J", "GetGetUsableSpaceHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getUsableSpace", "()J", "GetGetUsableSpaceHandler", ApiSince=26)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the number of bytes available to this Java virtual machine on this file store.</summary>
<value>The number of available bytes, or <c>long.MaxValue</c> if the number exceeds that value.</value>
<remarks>
<para>This value is a hint, not a guarantee; it is most accurate immediately after retrieval and may be affected by external I/O operations.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/nio/file/FileStore#getUsableSpace()" title="Reference documentation">Java documentation for <code>java.nio.file.FileStore.getUsableSpace()</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>
<exception cref="T:Java.IO.IOException">If an I/O error occurs.</exception>
</Docs>
</Member>
</Members>
</Type>