ByteArrayBuffer.Append Method

Definition

Overloads

Name Description
Append(Int32)

Appends a byte to this buffer.

Append(CharArrayBuffer, Int32, Int32)

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

Append(Byte[], Int32, Int32)

Appends bytes from an array.

Append(Char[], Int32, Int32)

Appends characters from an array after converting them to bytes.

Append(Int32)

Appends a byte to this buffer.

[Android.Runtime.Register("append", "(I)V", "")]
public void Append(int b);
[<Android.Runtime.Register("append", "(I)V", "")>]
member this.Append : int -> unit

Parameters

b
Int32

The byte value 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 after converting them to bytes.

[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.

[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 after converting them to bytes.

[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