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

« back to all changes in this revision

Viewing changes to external/maccore/src/Foundation/NSNotificationCenter.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:
1
1
//
2
2
// Copyright 2009, Novell, Inc.
 
3
// Copyright 2011, 2012 Xamarin Inc
 
4
//
 
5
// Permission is hereby granted, free of charge, to any person obtaining
 
6
// a copy of this software and associated documentation files (the
 
7
// "Software"), to deal in the Software without restriction, including
 
8
// without limitation the rights to use, copy, modify, merge, publish,
 
9
// distribute, sublicense, and/or sell copies of the Software, and to
 
10
// permit persons to whom the Software is furnished to do so, subject to
 
11
// the following conditions:
 
12
// 
 
13
// The above copyright notice and this permission notice shall be
 
14
// included in all copies or substantial portions of the Software.
 
15
// 
 
16
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
17
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
18
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
19
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
20
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
21
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
22
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
23
//
3
24
//
4
25
using MonoMac.ObjCRuntime;
5
26
using MonoMac.Foundation;
39
60
 
40
61
        // The C# overloads
41
62
        public partial class NSNotificationCenter {
42
 
                static Selector postSelector = new Selector ("post:");
 
63
                const string postSelector = "post:";
43
64
 
44
65
                class ObservedData 
45
66
                {
50
71
 
51
72
                List <ObservedData> __mt_ObserverList_var = new List <ObservedData> ();
52
73
 
53
 
                [Obsolete ("Use AddObserver(NSString, Action<NSNotification>, NSObject)")]
 
74
                [Advice ("Use AddObserver(NSString, Action<NSNotification>, NSObject)")]
54
75
                public NSObject AddObserver (string aName, Action<NSNotification> notify, NSObject fromObject)
55
76
                {
56
77
                        return AddObserver (new NSString (aName), notify, fromObject);
63
84
                        
64
85
                        var proxy = new InternalNSNotificationHandler (this, notify);
65
86
                        
66
 
                        AddObserver (proxy, postSelector, aName, fromObject);
 
87
                        AddObserver (proxy, new Selector (postSelector), aName, fromObject);
67
88
 
68
89
                        return proxy;
69
90
                }
73
94
                        return AddObserver (aName, notify, null);
74
95
                }
75
96
 
76
 
                [Obsolete ("Use AddObserver(NSString, Action<NSNotification>) instead")]
 
97
                [Advice ("Use AddObserver(NSString, Action<NSNotification>) instead")]
77
98
                public NSObject AddObserver (string aName, Action<NSNotification> notify)
78
99
                {
79
100
                        return AddObserver (aName, notify, null);
80
101
                }
81
102
 
82
 
                [Obsolete ("Use AddObserver(NSObject, Selector, NSString, NSObject) instead")]
 
103
                [Advice ("Use AddObserver(NSObject, Selector, NSString, NSObject) instead")]
83
104
                public void AddObserver (NSObject observer, Selector aSelector, string aname, NSObject anObject)
84
105
                {
85
106
                        AddObserver (observer, aSelector, new NSString (aname), anObject);