URLEncodedUtils.Parse 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
Parse(IHttpEntity) |
Returns a list of INameValuePair as parsed from an IHttpEntity. |
Parse(URI, String) |
Returns a list of INameValuePair as built from the URI's query portion. |
Parse(IList<INameValuePair>, Scanner, String) |
Parse(IHttpEntity)
Returns a list of INameValuePair as parsed from an IHttpEntity.
[Android.Runtime.Register("parse", "(Lorg/apache/http/HttpEntity;)Ljava/util/List;", "")]
public static System.Collections.Generic.IList<Org.Apache.Http.INameValuePair>? Parse (Org.Apache.Http.IHttpEntity? entity);
[<Android.Runtime.Register("parse", "(Lorg/apache/http/HttpEntity;)Ljava/util/List;", "")>]
static member Parse : Org.Apache.Http.IHttpEntity -> System.Collections.Generic.IList<Org.Apache.Http.INameValuePair>
Parameters
- entity
- IHttpEntity
The entity to parse
Returns
- Attributes
Exceptions
If there was an exception getting the entity's data.
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
Parse(URI, String)
Returns a list of INameValuePair as built from the URI's query portion.
[Android.Runtime.Register("parse", "(Ljava/net/URI;Ljava/lang/String;)Ljava/util/List;", "")]
public static System.Collections.Generic.IList<Org.Apache.Http.INameValuePair>? Parse (Java.Net.URI? uri, string? encoding);
[<Android.Runtime.Register("parse", "(Ljava/net/URI;Ljava/lang/String;)Ljava/util/List;", "")>]
static member Parse : Java.Net.URI * string -> System.Collections.Generic.IList<Org.Apache.Http.INameValuePair>
Parameters
- uri
- URI
uri to parse
- encoding
- String
encoding to use while parsing the query
Returns
- 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
Parse(IList<INameValuePair>, Scanner, String)
[Android.Runtime.Register("parse", "(Ljava/util/List;Ljava/util/Scanner;Ljava/lang/String;)V", "")]
public static void Parse (System.Collections.Generic.IList<Org.Apache.Http.INameValuePair>? parameters, Java.Util.Scanner? scanner, string? encoding);
[<Android.Runtime.Register("parse", "(Ljava/util/List;Ljava/util/Scanner;Ljava/lang/String;)V", "")>]
static member Parse : System.Collections.Generic.IList<Org.Apache.Http.INameValuePair> * Java.Util.Scanner * string -> unit
Parameters
- parameters
- IList<INameValuePair>
- scanner
- Scanner
- encoding
- String
- 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.