Run the attached project and follow the steps in the gif file. As a result the following exception occurs:
System.IO.IOException: 'The process cannot access the file 't_0_0_1.png' because it is being used by another process.'
A sample for the required functionality:
public void AddMarker(RadMap Map)
{
SearchRequest r = new SearchRequest();
r.Query = "Paris, France";
r.UserData = new Guid();
bingProvider.SearchCompleted += BingProvider_SearchCompleted;
bingProvider.SearchAsync(r);
}
private void BingProvider_SearchCompleted(object sender, SearchCompletedEventArgs e)
{
//one cannot access the UserData here
}