Decodes Content-ID in URL format ('a%25b@c'). Converts %hh hex-escaped characters to their ASCII equivalents.

Namespace: Limilabs.Mail.Headers
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public static string DecodeContentId(
	string cid
)
Visual Basic
Public Shared Function DecodeContentId ( _
	cid As String _
) As String
Visual C++
public:
static String^ DecodeContentId(
	String^ cid
)

Parameters

cid
Type: System..::..String
Content-ID for decoding.

Return Value

Decoded Content-ID value ('a%b@c').

See Also