AbstractMessageParser Constructors

Definition

Overloads

Name Description
AbstractMessageParser(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

AbstractMessageParser(ISessionInputBuffer, ILineParser, IHttpParams)

Initializes a message parser with the specified input buffer and line parser.

AbstractMessageParser(IntPtr, JniHandleOwnership)

Initializes a managed wrapper for the specified Java object.

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

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

AbstractMessageParser(ISessionInputBuffer, ILineParser, IHttpParams)

Initializes a message parser with the specified input buffer and line parser.

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

Parameters

buffer
ISessionInputBuffer

The session input buffer.

parser
ILineParser

The line parser to use.

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