Hello,
I have a collection of points.
And I want to get the addresses of these points via my addresslocator task on ArcGIS Server.
in a loop I am calling the locationToAddressAsync method.
But it gives error "Task doesn't support concurrent I/O operaations..............."
What should I do?
I want to know that what index of point in the collection I am trying to get the address?
addhandler task.locationtoAddressCompleted, addressof Y
for i as integer = 1 to PointsCollection.count
task.locationtoAddressAsync( pointscollection(i) )
next
in method Y how can I understand the the index of that point in the colletion..
And I also want to say that I am writing in VB.NET.
There is something different in C# I think