| Visual Basic (Declaration) | |
|---|---|
<BrowsableAttribute(False)> Public ReadOnly Property Capabilities As String() | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Imap Dim value() As String value = instance.Capabilities | |
| C# | |
|---|---|
[BrowsableAttribute(false)] public string[] Capabilities {get;} | |
| Managed Extensions for C++ | |
|---|---|
[BrowsableAttribute(false)] public: __property string*[]* get_Capabilities(); | |
| C++/CLI | |
|---|---|
[BrowsableAttribute(false)] public: property array<String^>^ Capabilities { array<String^>^ get(); } | |
Property Value
An array of strings representing the capabilities as reported by the IMAP server.After successfully logging in, the Imap component automatically issues the IMAP CAPABILITY command, which the server responds to by listing it's capabilities. The Imap.capabilities property returns this list. For example, if "IDLE" is part of this collection this indicates support for the IMAP IDLE command.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code