ImapUtilsGetImapDateTimeString Method (DateTime) |
Returns the string containing the specified local date and time value in the IMAP4 format.
Namespace: MailBee.ImapMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public static string GetImapDateTimeString(
DateTime dt
)
Public Shared Function GetImapDateTimeString (
dt As DateTime
) As String
Parameters
- dt
- Type: SystemDateTime
The date and time in the timezone of the local computer.
Return Value
Type:
StringThe IMAP4 datetime string in "dd-MMM-yyyy HH:mm:ss +/-HHmm" format.
Examples
This sample prints the current datetime of the local computer as IMAP4-formatted string.
using System;
class Sample
{
static void Main(string[] args)
{
Console.WriteLine(
MailBee.ImapMail.ImapUtils.GetImapDateTimeString(DateTime.Now));
}
}
Imports System
Module Sample
Sub Main(ByVal args As String())
Console.WriteLine( _
MailBee.ImapMail.ImapUtils.GetImapDateTimeString(DateTime.Now))
End Sub
End Module
See Also