System::Globalization::IdnMapping class

IdnMapping class

IdnMapping used to map names to Punycode. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class IdnMapping : public System::Object

Methods

MethodDescription
Equals(SharedPtr<Object>) overrideCompares two IdnMapping objects.
get_AllowUnassigned() constGets flag that indicates if unassigned code points used in operations.
get_UseStd3AsciiRules() constGets flag that indicates if standard naming conventions used in operations.
GetAscii(const String&) constConvert unicode domain name to ascii equivalent.
GetAscii(const String&, int) constConvert unicode domain name to ascii equivalent.
GetAscii(const String&, int, int) constConvert unicode domain name to ascii equivalent.
GetHashCode() const overrideGets hash code for current IdnMapping object.
GetUnicode(const String&) constConvert ascii domain name to unicode equivalent.
GetUnicode(const String&, int) constConvert ascii domain name to unicode equivalent.
GetUnicode(const String&, int, int) constConvert ascii domain name to unicode equivalent.
IdnMapping()RTTI information.
IdnMapping(const IdnMapping&)
operator=(const IdnMapping&)
set_AllowUnassigned(bool)Sets flag that indicates if unassigned code points used in operations.
set_UseStd3AsciiRules(bool)Sets flag that indicates if standard naming conventions used in operations.

See Also