Click or drag to resize
MimeKit

IPunycodeEncode(String, Int32) Method

Encode a Unicode domain name, converting it to an ASCII-safe representation.

Namespace: MimeKit.Encodings
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
string Encode(
	string domain,
	int index
)

Parameters

domain  String
The Unicode domain name.
index  Int32
A zero-based offset into domain that specifies the start of the substring to convert. The conversion operation continues to the end of the string.

Return Value

String
The ASCII-encoded domain name.
Remarks
Encodes a Unicode domain name, converting it to an ASCII-safe representation according to the rules defined by the IDNA standard.
See Also