/// <remarks/> public void ReportLocationAsync(System.Guid sessionID, System.DateTime time, GpsLocation location) { this.ReportLocationAsync(sessionID, time, location, null); }
/// <remarks/> public void ReportLocationAsync(System.Guid sessionID, System.DateTime time, GpsLocation location, object userState) { if ((this.ReportLocationOperationCompleted == null)) { this.ReportLocationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReportLocationOperationCompleted); } this.InvokeAsync("ReportLocation", new object[] { sessionID, time, location}, this.ReportLocationOperationCompleted, userState); }
public void ReportLocation(System.Guid sessionID, System.DateTime time, GpsLocation location) { this.Invoke("ReportLocation", new object[] { sessionID, time, location}); }