Hey guys,
I am having a weird scenario after upgrading to .NET 4.8. We are still using ArcGIS Runtime SDK 10.2.7. We are looping through our map layers and executing a query task, but the first querytask always takes 15 seconds and all of the next querytasks just runs under 1 or 2 seconds. We are using IdentityManager for the authentication.
Query Task Code:
QueryTask task = new QueryTask(new Uri(url));
query.OutFields.Add("*");
query.ReturnGeometry = true;
Task<QueryResult> queryTask = task.ExecuteAsync(query);
QueryResult result = await queryTask;