BasicLineParser.ParseRequestLine Method

Definition

Overloads

ParseRequestLine(CharArrayBuffer, ParserCursor)

Parses a request line.

ParseRequestLine(String, ILineParser)

ParseRequestLine(CharArrayBuffer, ParserCursor)

Parses a request line.

[Android.Runtime.Register("parseRequestLine", "(Lorg/apache/http/util/CharArrayBuffer;Lorg/apache/http/message/ParserCursor;)Lorg/apache/http/RequestLine;", "GetParseRequestLine_Lorg_apache_http_util_CharArrayBuffer_Lorg_apache_http_message_ParserCursor_Handler")]
public virtual Org.Apache.Http.IRequestLine? ParseRequestLine (Org.Apache.Http.Util.CharArrayBuffer? buffer, Org.Apache.Http.Message.ParserCursor? cursor);
[<Android.Runtime.Register("parseRequestLine", "(Lorg/apache/http/util/CharArrayBuffer;Lorg/apache/http/message/ParserCursor;)Lorg/apache/http/RequestLine;", "GetParseRequestLine_Lorg_apache_http_util_CharArrayBuffer_Lorg_apache_http_message_ParserCursor_Handler")>]
abstract member ParseRequestLine : Org.Apache.Http.Util.CharArrayBuffer * Org.Apache.Http.Message.ParserCursor -> Org.Apache.Http.IRequestLine
override this.ParseRequestLine : Org.Apache.Http.Util.CharArrayBuffer * Org.Apache.Http.Message.ParserCursor -> Org.Apache.Http.IRequestLine

Parameters

buffer
CharArrayBuffer

a buffer holding the line to parse

cursor
ParserCursor

the parser cursor containing the current position and the bounds within the buffer for the parsing operation

Returns

Implements

Attributes

Exceptions

in case of a parse error

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

ParseRequestLine(String, ILineParser)

[Android.Runtime.Register("parseRequestLine", "(Ljava/lang/String;Lorg/apache/http/message/LineParser;)Lorg/apache/http/RequestLine;", "")]
public static Org.Apache.Http.IRequestLine? ParseRequestLine (string? value, Org.Apache.Http.Message.ILineParser? parser);
[<Android.Runtime.Register("parseRequestLine", "(Ljava/lang/String;Lorg/apache/http/message/LineParser;)Lorg/apache/http/RequestLine;", "")>]
static member ParseRequestLine : string * Org.Apache.Http.Message.ILineParser -> Org.Apache.Http.IRequestLine

Parameters

value
String
parser
ILineParser

Returns

Attributes

Exceptions

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