HttpRequestParser Constructors

Definition

Overloads

Name Description
HttpRequestParser(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

HttpRequestParser(ISessionInputBuffer, ILineParser, IHttpRequestFactory, IHttpParams)

Initializes an HTTP request parser.

HttpRequestParser(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

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

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

HttpRequestParser(ISessionInputBuffer, ILineParser, IHttpRequestFactory, IHttpParams)

Initializes an HTTP request parser.

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

Parameters

buffer
ISessionInputBuffer

The session input buffer.

parser
ILineParser

The line parser to use.

requestFactory
IHttpRequestFactory

The factory used to create parsed HTTP requests.

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