Exemple #1
0
 /// <summary>
 /// Updates this instance of UserLocation. Returns true on success.
 /// </summary>
 /// <returns>bool</returns>
 private bool Update()
 {
     return(DBUserLocation.Update(
                this.rowID,
                this.userGuid,
                this.siteGuid,
                this.iPAddress,
                this.iPAddressLong,
                this.hostname,
                this.longitude,
                this.latitude,
                this.iSP,
                this.continent,
                this.country,
                this.region,
                this.city,
                this.timeZone,
                this.captureCount + 1,
                DateTime.UtcNow));
 }