IDN.ToUnicode 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
| ToUnicode(String) |
Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of <a href="http://www. |
| ToUnicode(String, IDNFlags) |
Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of <a href="http://www. |
ToUnicode(String)
Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of <a href="http://www.
[Android.Runtime.Register("toUnicode", "(Ljava/lang/String;)Ljava/lang/String;", "")]
public static string? ToUnicode (string? input);
[<Android.Runtime.Register("toUnicode", "(Ljava/lang/String;)Ljava/lang/String;", "")>]
static member ToUnicode : string -> string
Parameters
- input
- String
the string to be processed
Returns
the translated String
- Attributes
Remarks
Java documentation for java.net.IDN.toUnicode(java.lang.String).
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
ToUnicode(String, IDNFlags)
Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of <a href="http://www.
[Android.Runtime.Register("toUnicode", "(Ljava/lang/String;I)Ljava/lang/String;", "")]
public static string? ToUnicode (string? input, Java.Net.IDNFlags flag);
[<Android.Runtime.Register("toUnicode", "(Ljava/lang/String;I)Ljava/lang/String;", "")>]
static member ToUnicode : string * Java.Net.IDNFlags -> string
Parameters
- input
- String
the string to be processed
- flag
- IDNFlags
process flag; can be 0 or any logical OR of possible flags
Returns
the translated String
- Attributes
Remarks
Java documentation for java.net.IDN.toUnicode(java.lang.String, int).
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.