Gets a value indicating if the message has been downloaded from the server.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Complete As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As MessageBase
Dim value As Boolean
instance.Complete = value
value = instance.Complete |
| C# | |
|---|
public bool Complete {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property bool get_Complete();
public: __property void set_Complete(
bool value
); |
| C++/CLI | |
|---|
public:
property bool Complete {
bool get();
void set ( bool value);
} |
Property Value
true if the message has been downloaded from the server; otherwise false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also