ChunkedOutputStream Constructors

Definition

Overloads

Name Description
ChunkedOutputStream(ISessionOutputBuffer)

Initializes a chunked output stream over a session output buffer.

ChunkedOutputStream(ISessionOutputBuffer, Int32)

Initializes a chunked output stream over a session output buffer.

ChunkedOutputStream(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

ChunkedOutputStream(ISessionOutputBuffer)

Initializes a chunked output stream over a session output buffer.

[Android.Runtime.Register(".ctor", "(Lorg/apache/http/io/SessionOutputBuffer;)V", "")]
public ChunkedOutputStream(Org.Apache.Http.IO.ISessionOutputBuffer? out);
[<Android.Runtime.Register(".ctor", "(Lorg/apache/http/io/SessionOutputBuffer;)V", "")>]
new Org.Apache.Http.Impl.IO.ChunkedOutputStream : Org.Apache.Http.IO.ISessionOutputBuffer -> Org.Apache.Http.Impl.IO.ChunkedOutputStream

Parameters

out
ISessionOutputBuffer

The session output buffer.

Attributes

Remarks

Portions of this page are based on work created and shared by the Apache Software Foundation and used under the terms of the Apache License, Version 2.0.

Applies to

ChunkedOutputStream(ISessionOutputBuffer, Int32)

Initializes a chunked output stream over a session output buffer.

[Android.Runtime.Register(".ctor", "(Lorg/apache/http/io/SessionOutputBuffer;I)V", "")]
public ChunkedOutputStream(Org.Apache.Http.IO.ISessionOutputBuffer? out, int bufferSize);
[<Android.Runtime.Register(".ctor", "(Lorg/apache/http/io/SessionOutputBuffer;I)V", "")>]
new Org.Apache.Http.Impl.IO.ChunkedOutputStream : Org.Apache.Http.IO.ISessionOutputBuffer * int -> Org.Apache.Http.Impl.IO.ChunkedOutputStream

Parameters

out
ISessionOutputBuffer

The session output buffer.

bufferSize
Int32

The size, in bytes, of the internal buffer.

Attributes

Remarks

Portions of this page are based on work created and shared by the Apache Software Foundation and used under the terms of the Apache License, Version 2.0.

Applies to

ChunkedOutputStream(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

protected ChunkedOutputStream(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Apache.Http.Impl.IO.ChunkedOutputStream : nativeint * Android.Runtime.JniHandleOwnership -> Org.Apache.Http.Impl.IO.ChunkedOutputStream

Parameters

javaReference
IntPtr

nativeint

The JNI handle of the Java object.

transfer
JniHandleOwnership

The ownership transfer mode for the JNI handle.

Remarks

Portions of this page are based on work created and shared by the Apache Software Foundation and used under the terms of the Apache License, Version 2.0.

Applies to