Example #1
0
 /// <remarks/>
 public void ReportLocationAsync(System.Guid sessionID, System.DateTime time, GpsLocation location) {
     this.ReportLocationAsync(sessionID, time, location, null);
 }
Example #2
0
 /// <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);
 }
Example #3
0
 public void ReportLocation(System.Guid sessionID, System.DateTime time, GpsLocation location) {
     this.Invoke("ReportLocation", new object[] {
                 sessionID,
                 time,
                 location});
 }