BasicHeaderValueParser.ParseParameters Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| ParseParameters(CharArrayBuffer, ParserCursor) |
Parses parameters with the given parser. |
| ParseParameters(String, IHeaderValueParser) |
Parses parameters using the specified parser. |
ParseParameters(CharArrayBuffer, ParserCursor)
Parses parameters with the given parser.
[Android.Runtime.Register("parseParameters", "(Lorg/apache/http/util/CharArrayBuffer;Lorg/apache/http/message/ParserCursor;)[Lorg/apache/http/NameValuePair;", "GetParseParameters_Lorg_apache_http_util_CharArrayBuffer_Lorg_apache_http_message_ParserCursor_Handler")]
public virtual Org.Apache.Http.INameValuePair[]? ParseParameters(Org.Apache.Http.Util.CharArrayBuffer? buffer, Org.Apache.Http.Message.ParserCursor? cursor);
[<Android.Runtime.Register("parseParameters", "(Lorg/apache/http/util/CharArrayBuffer;Lorg/apache/http/message/ParserCursor;)[Lorg/apache/http/NameValuePair;", "GetParseParameters_Lorg_apache_http_util_CharArrayBuffer_Lorg_apache_http_message_ParserCursor_Handler")>]
abstract member ParseParameters : Org.Apache.Http.Util.CharArrayBuffer * Org.Apache.Http.Message.ParserCursor -> Org.Apache.Http.INameValuePair[]
override this.ParseParameters : Org.Apache.Http.Util.CharArrayBuffer * Org.Apache.Http.Message.ParserCursor -> Org.Apache.Http.INameValuePair[]
Parameters
- buffer
- CharArrayBuffer
The buffer holding the name-value list to parse.
- cursor
- ParserCursor
The parser cursor containing the current position and parsing bounds.
Returns
All parsed name-value pairs.
Implements
- Attributes
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
ParseParameters(String, IHeaderValueParser)
Parses parameters using the specified parser.
[Android.Runtime.Register("parseParameters", "(Ljava/lang/String;Lorg/apache/http/message/HeaderValueParser;)[Lorg/apache/http/NameValuePair;", "")]
public static Org.Apache.Http.INameValuePair[]? ParseParameters(string? value, Org.Apache.Http.Message.IHeaderValueParser? parser);
[<Android.Runtime.Register("parseParameters", "(Ljava/lang/String;Lorg/apache/http/message/HeaderValueParser;)[Lorg/apache/http/NameValuePair;", "")>]
static member ParseParameters : string * Org.Apache.Http.Message.IHeaderValueParser -> Org.Apache.Http.INameValuePair[]
Parameters
- value
- String
The parameter list to parse.
- parser
- IHeaderValueParser
The parser to use, or null for the default parser.
Returns
An array of parsed parameters.
- Attributes
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.