A feature attachment. More...
Header: | #include <Attachment.h> |
Since: | Esri::ArcGISRuntime 100.0 |
Inherits: | Esri::ArcGISRuntime::Object |
Public Functions
virtual | ~Attachment() override |
qint64 | attachmentId() const |
QUrl | attachmentUrl() const |
QString | contentType() const |
QFuture<QByteArray> | fetchDataAsync() |
bool | isDataFetched() const |
QString | name() const |
qint64 | size() const |
Detailed Description
A feature attachment is an item associated with a feature but not an attribute of the feature. Where allowed, features may have zero or more attachments. Attachments can be images, documents, and so on. Information about an attachment includes name, size, and content type.
Member Function Documentation
[override virtual]
Attachment::~Attachment()
Destructor.
[since Esri::ArcGISRuntime 100.1]
qint64 Attachment::attachmentId () const
Returns the ID of the attachment.
This function was introduced in Esri::ArcGISRuntime 100.1.
QUrl Attachment::attachmentUrl () const
Returns the URL of the attachment if its data is already fetched.
QString Attachment::contentType () const
Returns the MIME type of the attachment file.
[since Esri::ArcGISRuntime 200.2]
QFuture<QByteArray > Attachment::fetchDataAsync ()
Returns the attachment's data.
This method returns a QFuture for the asynchronous operation. Use future.then() to continue processing when the operation completes. Use future.onFailed() to handle exceptions of type ErrorException.
See Working with QFuture for further details.
This function was introduced in Esri::ArcGISRuntime 200.2.
bool Attachment::isDataFetched () const
Returns true
if the attachment data has already been retrieved.
This is true
if the attachment data has been retrieved previously. Even so, you must call fetchData() to get the data. The operation should complete more quickly since the data is already available locally.
You can request attachment data proactively to reduce the time it takes to retrieve the data from its source. However, to avoid unnecessary communication overhead, you should fetch the data only when the user needs it.
QString Attachment::name() const
Returns the name of the attachment.
qint64 Attachment::size() const
Returns the size of the attachment in bytes.