Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) IMAP Get QuotaSends the GETQUOTA command to the IMAP server to get the quota information for a given quota root. The GetQuota method is available in Chilkat starting at v9.5.0.58, and is only available for IMAP servers that support the QUOTA extension. The information is returned in JSON format. This example demonstrates how to parse the JSON to get the desired information. Typically, the quota root for the Inbox is the empty string. The GetQuotaRoot method can be called to get the quota root for a given mailbox.
' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim imap As New Chilkat.Imap ' Use TLS imap.Ssl = True imap.Port = 993 Dim success As Boolean = Await imap.ConnectAsync("MY-IMAP-DOMAIN") If (success <> True) Then Debug.WriteLine(imap.LastErrorText) Exit Sub End If ' Authenticate success = Await imap.LoginAsync("MY-IMAP-LOGIN","MY-IMAP-PASSWORD") If (success <> True) Then Debug.WriteLine(imap.LastErrorText) Exit Sub End If ' First check to see if the IMAP server supports the QUOTA extension. Dim caps As String = Await imap.CapabilityAsync() If (imap.LastMethodSuccess <> True) Then Debug.WriteLine(imap.LastErrorText) Exit Sub End If If (imap.HasCapability("QUOTA",caps) <> True) Then Debug.WriteLine("IMAP server does not support the QUOTA extension.") Exit Sub End If ' This example assumes we already know the quota root for the given mailbox. ' For Inbox, it is typically the empty string. See the documentation and example ' for the GetQuotaRoot method to query for the quota root of a mailbox. ' (It's probably easier to use GetQuotaRoot because the mailbox name ' can be passed to it, and in addition, it returns the quota information.) ' method for details Dim jsonStr As String = Await imap.GetQuotaAsync("") If (imap.LastMethodSuccess <> True) Then Debug.WriteLine(imap.LastErrorText) Exit Sub End If ' The JSON string will look something like this: ' {"QUOTA":{"root":"","resource":"STORAGE","used":22216,"max":15728640}} Debug.WriteLine(jsonStr) ' This is easy to parse... Dim json As New Chilkat.JsonObject json.Load(jsonStr) ' Now get the resource name (which can be STORAGE or MESSAGE) and the used/max values. ' Most servers have STORAGE quotas, which are for total capacity. For example, GMail's ' STORAGE quota is 15GB (at the time of writing this example). ' A MESSAGE quota sets a limit on the number of messages. Dim resourceName As String = json.StringOf("QUOTA.resource") Dim quotaUsed As Integer = json.IntOf("QUOTA.used") Dim quotaMax As Integer = json.IntOf("QUOTA.max") Debug.WriteLine("Resource: " & resourceName) Debug.WriteLine("Quota Used (in KB): " & quotaUsed) Debug.WriteLine("Quota Max (in KB): " & quotaMax) ' Disconnect from the IMAP server. success = Await imap.DisconnectAsync() |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.