Ejemplo n.º 1
0
 internal void SetInternal (string value, double latitude, double longitude, string appTag, Action<BuddyCallResult<bool>> callback)
 {
     if (Owner != null) {
         Owner.SetInternal (this.Key, value, latitude, longitude, appTag, callback);
     } else {
         OwnerApp.SetInternal (this.Key, value, latitude, longitude, appTag, callback);
     }
 }
Ejemplo n.º 2
0
 internal void DeleteInternal (Action<BuddyCallResult<bool>> callback)
 {
     if (Owner != null) {
         Owner.DeleteInternal (this.Key, callback);
     } else {
         OwnerApp.DeleteInternal (this.Key, callback);
     }
     
 }