Represents the result of moving portal items. More...
Header: | #include <PortalResult.h> |
Since: | Esri::ArcGISRuntime 100.1 |
Public Functions
PortalResult() | |
PortalResult(const Esri::ArcGISRuntime::PortalResult &other) | |
PortalResult(Esri::ArcGISRuntime::PortalResult &&other) | |
virtual | ~PortalResult() |
Esri::ArcGISRuntime::Error | error() const |
bool | isSuccess() const |
QString | itemId() const |
Esri::ArcGISRuntime::PortalResult & | operator=(const Esri::ArcGISRuntime::PortalResult &other) |
Esri::ArcGISRuntime::PortalResult & | operator=(Esri::ArcGISRuntime::PortalResult &&other) |
Detailed Description
This type is the result of calling movePortalItems from a portal user.
See also PortalUser.
Member Function Documentation
PortalResult::PortalResult ()
Default constructor.
PortalResult::PortalResult (const Esri::ArcGISRuntime::PortalResult &other)
Copy constructor from other PortalResult.
PortalResult::PortalResult (Esri::ArcGISRuntime::PortalResult &&other)
Move constructor from other PortalResult.
[virtual]
PortalResult::~PortalResult ()
Destructor
Esri::ArcGISRuntime::Error PortalResult::error() const
Returns the error if the move was unsuccesful. Empty otherwise.
bool PortalResult::isSuccess () const
Returns whether the movePortalItems task was successfully executed.
QString PortalResult::itemId () const
Returns the ID of the item from the PortalUser task.
Esri::ArcGISRuntime::PortalResult &PortalResult::operator=(const Esri::ArcGISRuntime::PortalResult &other)
Assignment operator from other PortalResult.
Esri::ArcGISRuntime::PortalResult &PortalResult::operator=(Esri::ArcGISRuntime::PortalResult &&other)
Move operator from other PortalResult.