Geocoding.Google.GoogleGeocoder.SendRequestAsync C# (CSharp) Method

SendRequestAsync() private method

private SendRequestAsync ( RequestState requestState, AsyncCallback callback ) : IAsyncResult
requestState RequestState
callback AsyncCallback
return IAsyncResult
		private IAsyncResult SendRequestAsync(RequestState requestState, AsyncCallback callback)
		{
			try
			{
				return requestState.request.BeginGetResponse(callback, requestState);
			}
			catch (Exception ex)
			{
				throw new GoogleGeocodingException(ex);
			}
		}