Java.Net.URLDecoder.Decode Method
Decodes the argument which is assumed to be encoded in the x-www-form-urlencoded MIME content type.

Syntax

[Android.Runtime.Register("decode", "(Ljava/lang/String;)Ljava/lang/String;", "")]
[System.Obsolete("deprecated")]
public static string Decode (string s)

Parameters

s
the encoded string.

Returns

Documentation for this section has not yet been entered.

Remarks

Decodes the argument which is assumed to be encoded in the x-www-form-urlencoded MIME content type.

'+' will be converted to space, '%' and two following hex digit characters are converted to the equivalent byte value. All other characters are passed through unmodified. For example "A+B+C %24%25" -> "A B C $%".

[Android Documentation]

Requirements

Namespace: Java.Net
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1