Gets a value indicating if the message has been marked for deletion.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Overridable Property Delete As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As MessageBase
Dim value As Boolean
instance.Delete = value
value = instance.Delete |
| C# | |
|---|
public virtual bool Delete {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property virtual bool get_Delete();
public: __property virtual void set_Delete(
bool value
); |
| C++/CLI | |
|---|
public:
virtual property bool Delete {
bool get();
void set ( bool value);
} |
Property Value
true if the message has been marked for deletion, false otherwise; The default value is false;
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also