ImapUtilsGetImapDateString Method |
Returns the string containing the current date of the local computer in the IMAP4 format.
Namespace: MailBee.ImapMailAssembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntaxpublic static string GetImapDateString()
Public Shared Function GetImapDateString As String
Return Value
Type:
StringThe string containing the current date of the local computer in the IMAP4 format.
Remarks
Examples
This sample prints the current date of the local computer as IMAP4-formatted string.
using System;
class Sample
{
static void Main(string[] args)
{
Console.WriteLine(MailBee.ImapMail.ImapUtils.GetImapDateString());
}
}
Imports System
Module Sample
Sub Main(ByVal args As String())
Console.WriteLine(MailBee.ImapMail.ImapUtils.GetImapDateString())
End Sub
End Module
See Also