HttpResponseParser Constructors

Definition

Overloads

Name Description
HttpResponseParser(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

HttpResponseParser(ISessionInputBuffer, ILineParser, IHttpResponseFactory, IHttpParams)

Initializes an HTTP response parser.

HttpResponseParser(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

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

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

HttpResponseParser(ISessionInputBuffer, ILineParser, IHttpResponseFactory, IHttpParams)

Initializes an HTTP response parser.

[Android.Runtime.Register(".ctor", "(Lorg/apache/http/io/SessionInputBuffer;Lorg/apache/http/message/LineParser;Lorg/apache/http/HttpResponseFactory;Lorg/apache/http/params/HttpParams;)V", "")]
public HttpResponseParser(Org.Apache.Http.IO.ISessionInputBuffer? buffer, Org.Apache.Http.Message.ILineParser? parser, Org.Apache.Http.IHttpResponseFactory? responseFactory, Org.Apache.Http.Params.IHttpParams? params);
[<Android.Runtime.Register(".ctor", "(Lorg/apache/http/io/SessionInputBuffer;Lorg/apache/http/message/LineParser;Lorg/apache/http/HttpResponseFactory;Lorg/apache/http/params/HttpParams;)V", "")>]
new Org.Apache.Http.Impl.IO.HttpResponseParser : Org.Apache.Http.IO.ISessionInputBuffer * Org.Apache.Http.Message.ILineParser * Org.Apache.Http.IHttpResponseFactory * Org.Apache.Http.Params.IHttpParams -> Org.Apache.Http.Impl.IO.HttpResponseParser

Parameters

buffer
ISessionInputBuffer

The session input buffer.

parser
ILineParser

The line parser to use.

responseFactory
IHttpResponseFactory

The factory used to create parsed HTTP responses.

params
IHttpParams

The HTTP parameters that configure the buffer or parser.

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