Converts the combined 'unique ID' value used by Rebex IMAP into its distinct parts. Please consult the IMAP RFC for details on unique ID and validity ID.

Namespace:  Rebex.Net
Assembly:  Rebex.Imap (in Rebex.Imap.dll)

Syntax

Visual Basic
Public Shared Function ParseUniqueId ( _
	uniqueId As String, _
	<OutAttribute> ByRef validity As Long, _
	<OutAttribute> ByRef id As Long _
) As Boolean
C#
public static bool ParseUniqueId(
	string uniqueId,
	out long validity,
	out long id
)

Parameters

uniqueId
Type: System..::..String
Unique ID string.
validity
Type: System..::..Int64%
Folder validity ID.
id
Type: System..::..Int64%
Message unique ID.

Return Value

True if parsed successfully; false if unable to parse.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also