You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Esri.ArcGISRuntime for .net6 in my MAUI application and I can no longer set the credentials for a ServiceFeatureTable like I could in Xamarin. The Credential property is gone. (Old Code below)
var ParcelFeatureTable = new ServiceFeatureTable(parcelServiceLayerURI);
ParcelFeatureTable.Credential = cred;
How do I set the credentials for a ServiceFeatureTable?
The text was updated successfully, but these errors were encountered:
You can still use the authentication challenge handler. This will be triggered on table load. In the handler, you would be able to check info.ServiceUri before you assign the appropriate username/password. This credential will be added to the cache so it will be used for the next query or for any loadable objects that belong to the same server/portal.
I'm using Esri.ArcGISRuntime for .net6 in my MAUI application and I can no longer set the credentials for a ServiceFeatureTable like I could in Xamarin. The Credential property is gone. (Old Code below)
How do I set the credentials for a ServiceFeatureTable?
The text was updated successfully, but these errors were encountered: