Our feature service has photos attached to each row in the feature table.
I would like to download these photos using the .Net SDK for WPF.
While there is a great example for 10.2.7 at
Work with feature attachments—ArcGIS Runtime SDK for .NET | ArcGIS for Developers
I haven't found the equivalent example for the 100.2 .Net SDK.
There is no QueryAttachmentsAsync for the feature table so I'm wondering how to do this?
Hello,
You could use GetAttachmentAsync() method to retrieve the attachments from an ArcGISFeature:
ArcGISFeature.GetAttachmentsAsync Method
Hope that helps.