CharArrayBuffer.Append Method

Definition

Overloads

Name Description
Append(Object)

Appends the string representation of an object.

Append(CharArrayBuffer)

Appends all characters from a character buffer.

Append(Char)

Appends a character.

Append(String)

Appends a string.

Append(ByteArrayBuffer, Int32, Int32)

Appends bytes from a byte buffer after converting them to characters.

Append(CharArrayBuffer, Int32, Int32)

Appends characters from a character buffer.

Append(Byte[], Int32, Int32)

Appends bytes from an array after converting them to characters.

Append(Char[], Int32, Int32)

Appends characters from an array.

Append(Object)

Appends the string representation of an object.

[Android.Runtime.Register("append", "(Ljava/lang/Object;)V", "")]
public void Append(Java.Lang.Object? obj);
[<Android.Runtime.Register("append", "(Ljava/lang/Object;)V", "")>]
member this.Append : Java.Lang.Object -> unit

Parameters

obj
Object

The object whose string representation is appended.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(CharArrayBuffer)

Appends all characters from a character buffer.

[Android.Runtime.Register("append", "(Lorg/apache/http/util/CharArrayBuffer;)V", "")]
public void Append(Org.Apache.Http.Util.CharArrayBuffer? b);
[<Android.Runtime.Register("append", "(Lorg/apache/http/util/CharArrayBuffer;)V", "")>]
member this.Append : Org.Apache.Http.Util.CharArrayBuffer -> unit

Parameters

b
CharArrayBuffer

The character buffer to append.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(Char)

Appends a character.

[Android.Runtime.Register("append", "(C)V", "")]
public void Append(char ch);
[<Android.Runtime.Register("append", "(C)V", "")>]
member this.Append : char -> unit

Parameters

ch
Char

The character to append.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(String)

Appends a string.

[Android.Runtime.Register("append", "(Ljava/lang/String;)V", "")]
public void Append(string? str);
[<Android.Runtime.Register("append", "(Ljava/lang/String;)V", "")>]
member this.Append : string -> unit

Parameters

str
String

The string to append, or null to append the characters null.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(ByteArrayBuffer, Int32, Int32)

Appends bytes from a byte buffer after converting them to characters.

[Android.Runtime.Register("append", "(Lorg/apache/http/util/ByteArrayBuffer;II)V", "")]
public void Append(Org.Apache.Http.Util.ByteArrayBuffer? b, int off, int len);
[<Android.Runtime.Register("append", "(Lorg/apache/http/util/ByteArrayBuffer;II)V", "")>]
member this.Append : Org.Apache.Http.Util.ByteArrayBuffer * int * int -> unit

Parameters

b
ByteArrayBuffer

The byte buffer from which to copy bytes.

off
Int32

The index of the first byte to append.

len
Int32

The number of bytes to append.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(CharArrayBuffer, Int32, Int32)

Appends characters from a character buffer.

[Android.Runtime.Register("append", "(Lorg/apache/http/util/CharArrayBuffer;II)V", "")]
public void Append(Org.Apache.Http.Util.CharArrayBuffer? b, int off, int len);
[<Android.Runtime.Register("append", "(Lorg/apache/http/util/CharArrayBuffer;II)V", "")>]
member this.Append : Org.Apache.Http.Util.CharArrayBuffer * int * int -> unit

Parameters

b
CharArrayBuffer

The character buffer from which to copy characters.

off
Int32

The index of the first character to append.

len
Int32

The number of characters to append.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(Byte[], Int32, Int32)

Appends bytes from an array after converting them to characters.

[Android.Runtime.Register("append", "([BII)V", "")]
public void Append(byte[]? b, int off, int len);
[<Android.Runtime.Register("append", "([BII)V", "")>]
member this.Append : byte[] * int * int -> unit

Parameters

b
Byte[]

The byte array from which to copy bytes.

off
Int32

The index of the first byte to append.

len
Int32

The number of bytes to append.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(Char[], Int32, Int32)

Appends characters from an array.

[Android.Runtime.Register("append", "([CII)V", "")]
public void Append(char[]? b, int off, int len);
[<Android.Runtime.Register("append", "([CII)V", "")>]
member this.Append : char[] * int * int -> unit

Parameters

b
Char[]

The character array from which to copy characters.

off
Int32

The index of the first character to append.

len
Int32

The number of characters to append.

Attributes

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to