public override void Failed(CLLocationManager manager, MonoTouch.Foundation.NSError error)
 {
     switch ((CLError)error.Code)
     {
     case CLError.Network:
         StopListening();
         this.tcs.SetException(new GeolocationException(GeolocationError.PositionUnavailable));
         break;
     }
 }
예제 #2
0
 public override void Failed(CLLocationManager manager, MonoTouch.Foundation.NSError error)
 {
     // TODO: Implement - see: http://go-mono.com/docs/index.aspx?link=T%3aMonoTouch.Foundation.ModelAttribute
 }
예제 #3
0
            public override void FailedWithError(GKTurnBasedMatchmakerViewController viewController, MonoTouch.Foundation.NSError error)
            {
                Logger.W("MatchMakerDelegate.FailedWithError");

                viewController.DismissViewController(true, null);

                if (ErrorCallback != null)
                {
                    ErrorCallback();
                }
            }
 void GroupsEnumeratorFailed(MonoTouch.Foundation.NSError error)
 {
     Console.WriteLine("Enumerator failed!");
 }