~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/maccore/src/CoreLocation/CLEnums.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
// Authors:
3
3
//   Miguel de Icaza (miguel@gnome.org)
4
4
//
 
5
// Copyright 2011, 2012 Xamarin Inc
 
6
//
5
7
// The class can be either constructed from a string (from user code)
6
8
// or from a handle (from iphone-sharp.dll internal calls).  This
7
9
// delays the creation of the actual managed string until actually
42
44
                RegionMonitoringFailure,
43
45
                [Since (4,0)]
44
46
                RegionMonitoringSetupDelayed,
 
47
                
 
48
                // ios5 osx10.8
 
49
                RegionMonitoringResponseDelayed,
 
50
                // ios5 osx10.7
 
51
                GeocodeFoundNoResult,
 
52
                // ios5 osx10.8
 
53
                GeocodeFoundPartialResult,
 
54
                // ios5 osx10.7
 
55
                GeocodeCanceled,
 
56
 
 
57
                // ios6
 
58
                DeferredFailed,
 
59
                DeferredNotUpdatingLocation,
 
60
                DeferredAccuracyTooLow,
 
61
                DeferredDistanceFiltered,
 
62
                DeferredCanceled
45
63
        }
46
64
 
47
65
        public enum CLDeviceOrientation {
60
78
                Denied,
61
79
                Authorized
62
80
        }
 
81
 
 
82
        public enum CLActivityType {
 
83
                Other = 1,
 
84
                AutomotiveNavigation,
 
85
                Fitness,
 
86
                OtherNavigation
 
87
    }
63
88
}