Hello - our pro extension connects to a secure ArcGIS Server feature service using this code:
pointsLayer = (FeatureLayer)LayerFactory.Instance.CreateLayer(uri0, MapView.Active.Map, LayerPosition.AddToTop);
The user is prompted to enter their credentials the first time they use the extension. Everything works as expected until the token expires. Is there a way to automatically or programmatically refresh the token before it expires?
Thanks!