PowerTCP Mail for .NET
Tag Property
See Also  Send comments on this topic.
Dart.PowerTCP.Mail Namespace > ImapResponse Class : Tag Property




Gets the unique identifier for the command.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Tag As String
Visual Basic (Usage)Copy Code
Dim instance As ImapResponse
Dim value As String
 
value = instance.Tag
C# 
public string Tag {get;}
Managed Extensions for C++ 
public: __property string* get_Tag();
C++/CLI 
public:
property String^ Tag {
   String^ get();
}

Property Value

A string representation of the tag used to identify the response.

Remarks

This property returns the unique identifier found on tagged responses to commands. This unique identifier is actually generated by the Imap component when sending a command. The IMAP server will return this identifier with the response associated with the original client command.

For example, if the following line was received from the IMAP server,

A2 OK CAPABILITY completed

the ImapResponse.Tag property would contain "A2", which was also the tag used when the client sent the original "CAPABILITY" command.

Requirements

Target Platforms: Microsoft .NET Framework 2.0

See Also

Documentation Version 3.2
© 2010 Dart Communications. All Rights Reserved.