Gets or sets a value which determines if the message has been answered.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Answered As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ImapMessage
Dim value As Boolean
instance.Answered = value
value = instance.Answered |
| C# | |
|---|
public bool Answered {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property bool get_Answered();
public: __property void set_Answered(
bool value
); |
| C++/CLI | |
|---|
public:
property bool Answered {
bool get();
void set ( bool value);
} |
Property Value
If the message's Answered flag is set, this property returns true; otherwise false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also