-
Notifications
You must be signed in to change notification settings - Fork 3
/
IGetChars.xml
108 lines (108 loc) · 6.47 KB
/
IGetChars.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
<Type Name="IGetChars" FullName="Android.Text.IGetChars">
<TypeSignature Language="C#" Value="public interface IGetChars : IDisposable, Java.Interop.IJavaPeerable, Java.Lang.ICharSequence, System.Collections.Generic.IEnumerable<char>" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IGetChars implements class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class Java.Lang.ICharSequence, class System.Collections.Generic.IEnumerable`1<char>, class System.Collections.IEnumerable, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Android.Text.IGetChars" />
<TypeSignature Language="F#" Value="type IGetChars = interface
 interface ICharSequence
 interface seq<char>
 interface IEnumerable
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Lang.ICharSequence</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable<System.Char></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.IEnumerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/text/GetChars", "", "Android.Text.IGetCharsInvoker")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/text/GetChars", "", "Android.Text.IGetCharsInvoker")>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>Please implement this interface if your CharSequence has a
getChars() method like the one in String that is faster than
calling charAt() multiple times.</summary>
<remarks>
<para>Please implement this interface if your CharSequence has a
getChars() method like the one in String that is faster than
calling charAt() multiple times.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/text/GetChars" title="Reference documentation">Java documentation for <code>android.text.GetChars</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 1" />
</Docs>
<Members>
<Member MemberName="GetChars">
<MemberSignature Language="C#" Value="public void GetChars (int start, int end, char[]? dest, int destoff);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void GetChars(int32 start, int32 end, char[] dest, int32 destoff) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Text.IGetChars.GetChars(System.Int32,System.Int32,System.Char[],System.Int32)" />
<MemberSignature Language="F#" Value="abstract member GetChars : int * int * char[] * int -> unit" Usage="iGetChars.GetChars (start, end, dest, destoff)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getChars", "(II[CI)V", "GetGetChars_IIarrayCIHandler:Android.Text.IGetCharsInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getChars", "(II[CI)V", "GetGetChars_IIarrayCIHandler:Android.Text.IGetCharsInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="start" Type="System.Int32" />
<Parameter Name="end" Type="System.Int32" />
<Parameter Name="dest" Type="System.Char[]" />
<Parameter Name="destoff" Type="System.Int32" />
</Parameters>
<Docs>
<param name="start">To be added.</param>
<param name="end">To be added.</param>
<param name="dest">To be added.</param>
<param name="destoff">To be added.</param>
<summary>Exactly like String.</summary>
<remarks>
<para>Exactly like String.getChars(): copy chars <c>start</c>
through <c>end - 1</c> from this CharSequence into <c>dest</c>
beginning at offset <c>destoff</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/text/GetChars#getChars(int,%20int,%20char[],%20int)" title="Reference documentation">Java documentation for <code>android.text.GetChars.getChars(int, int, char[], 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 1" />
</Docs>
</Member>
</Members>
</Type>