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

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.Foundation/NSUserNotificationCenterDelegate.xml

  • 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
<Type Name="NSUserNotificationCenterDelegate" FullName="MonoMac.Foundation.NSUserNotificationCenterDelegate">
 
2
  <TypeSignature Language="C#" Value="public class NSUserNotificationCenterDelegate : MonoMac.Foundation.NSObject" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit NSUserNotificationCenterDelegate extends MonoMac.Foundation.NSObject" />
 
4
  <AssemblyInfo>
 
5
    <AssemblyName>MonoMac</AssemblyName>
 
6
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
7
  </AssemblyInfo>
 
8
  <Base>
 
9
    <BaseTypeName>MonoMac.Foundation.NSObject</BaseTypeName>
 
10
  </Base>
 
11
  <Interfaces />
 
12
  <Attributes>
 
13
    <Attribute>
 
14
      <AttributeName>MonoMac.Foundation.Model</AttributeName>
 
15
    </Attribute>
 
16
    <Attribute>
 
17
      <AttributeName>MonoMac.Foundation.Register("NSUserNotificationCenterDelegate", true)</AttributeName>
 
18
    </Attribute>
 
19
  </Attributes>
 
20
  <Docs>
 
21
    <summary>To be added.</summary>
 
22
    <remarks>To be added.</remarks>
 
23
  </Docs>
 
24
  <Members>
 
25
    <Member MemberName=".ctor">
 
26
      <MemberSignature Language="C#" Value="public NSUserNotificationCenterDelegate ();" />
 
27
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
 
28
      <MemberType>Constructor</MemberType>
 
29
      <AssemblyInfo>
 
30
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
31
      </AssemblyInfo>
 
32
      <Attributes>
 
33
        <Attribute>
 
34
          <AttributeName>MonoMac.Foundation.Export("init")</AttributeName>
 
35
        </Attribute>
 
36
        <Attribute>
 
37
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
38
        </Attribute>
 
39
      </Attributes>
 
40
      <Parameters />
 
41
      <Docs>
 
42
        <summary>To be added.</summary>
 
43
        <remarks>To be added.</remarks>
 
44
      </Docs>
 
45
    </Member>
 
46
    <Member MemberName=".ctor">
 
47
      <MemberSignature Language="C#" Value="public NSUserNotificationCenterDelegate (MonoMac.Foundation.NSCoder coder);" />
 
48
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSCoder coder) cil managed" />
 
49
      <MemberType>Constructor</MemberType>
 
50
      <AssemblyInfo>
 
51
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
52
      </AssemblyInfo>
 
53
      <Attributes>
 
54
        <Attribute>
 
55
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
 
56
        </Attribute>
 
57
        <Attribute>
 
58
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
59
        </Attribute>
 
60
      </Attributes>
 
61
      <Parameters>
 
62
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
 
63
      </Parameters>
 
64
      <Docs>
 
65
        <param name="coder">The unarchiver object.</param>
 
66
        <summary>A constructor that initializes the object from the data stored in the unarchiver object.</summary>
 
67
        <remarks>This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization).</remarks>
 
68
      </Docs>
 
69
    </Member>
 
70
    <Member MemberName=".ctor">
 
71
      <MemberSignature Language="C#" Value="public NSUserNotificationCenterDelegate (MonoMac.Foundation.NSObjectFlag t);" />
 
72
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSObjectFlag t) cil managed" />
 
73
      <MemberType>Constructor</MemberType>
 
74
      <AssemblyInfo>
 
75
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
76
      </AssemblyInfo>
 
77
      <Attributes>
 
78
        <Attribute>
 
79
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
80
        </Attribute>
 
81
      </Attributes>
 
82
      <Parameters>
 
83
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
 
84
      </Parameters>
 
85
      <Docs>
 
86
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
 
87
        <summary>Constructor to call on derived classes when the derived class has an [Export] constructor.</summary>
 
88
        <remarks>
 
89
          <para>This constructor should be called by derived classes when they are initialized using an [Export] attribute. The argument value is ignore, typically the chaining would look like this:</para>
 
90
          <example>
 
91
            <code lang="C#">
 
92
public class MyClass : BaseClass {
 
93
    [Export ("initWithFoo:")]
 
94
    public MyClass (string foo) : base (NSObjectFlag.Empty)
 
95
    {
 
96
        ...
 
97
    }
 
98
</code>
 
99
          </example>
 
100
        </remarks>
 
101
      </Docs>
 
102
    </Member>
 
103
    <Member MemberName=".ctor">
 
104
      <MemberSignature Language="C#" Value="public NSUserNotificationCenterDelegate (IntPtr handle);" />
 
105
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(native int handle) cil managed" />
 
106
      <MemberType>Constructor</MemberType>
 
107
      <AssemblyInfo>
 
108
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
109
      </AssemblyInfo>
 
110
      <Attributes>
 
111
        <Attribute>
 
112
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
113
        </Attribute>
 
114
      </Attributes>
 
115
      <Parameters>
 
116
        <Parameter Name="handle" Type="System.IntPtr" />
 
117
      </Parameters>
 
118
      <Docs>
 
119
        <param name="handle">Pointer (handle) to the unmanaged object.</param>
 
120
        <summary>A constructor used when creating managed representations of unmanaged objects;  Called by the runtime.</summary>
 
121
        <remarks>
 
122
          <para>This constructor is invoked by the runtime infrastructure (<see cref="M:MonoMac.ObjCRuntime.GetNSObject (System.IntPtr)" />) to create a new managed representation for a pointer to an unmanaged Objective-C object.    You should not invoke this method directly, instead you should call the GetNSObject method as it will prevent two instances of a managed object to point to the same native object.</para>
 
123
        </remarks>
 
124
      </Docs>
 
125
    </Member>
 
126
    <Member MemberName="DidActivateNotification">
 
127
      <MemberSignature Language="C#" Value="public virtual void DidActivateNotification (MonoMac.Foundation.NSUserNotificationCenter center, MonoMac.Foundation.NSUserNotification notification);" />
 
128
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DidActivateNotification(class MonoMac.Foundation.NSUserNotificationCenter center, class MonoMac.Foundation.NSUserNotification notification) cil managed" />
 
129
      <MemberType>Method</MemberType>
 
130
      <AssemblyInfo>
 
131
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
132
      </AssemblyInfo>
 
133
      <Attributes>
 
134
        <Attribute>
 
135
          <AttributeName>MonoMac.Foundation.Export("userNotificationCenter:didActivateNotification:")</AttributeName>
 
136
        </Attribute>
 
137
      </Attributes>
 
138
      <ReturnValue>
 
139
        <ReturnType>System.Void</ReturnType>
 
140
      </ReturnValue>
 
141
      <Parameters>
 
142
        <Parameter Name="center" Type="MonoMac.Foundation.NSUserNotificationCenter" />
 
143
        <Parameter Name="notification" Type="MonoMac.Foundation.NSUserNotification" />
 
144
      </Parameters>
 
145
      <Docs>
 
146
        <param name="center">To be added.</param>
 
147
        <param name="notification">To be added.</param>
 
148
        <summary>To be added.</summary>
 
149
        <remarks>To be added.</remarks>
 
150
      </Docs>
 
151
    </Member>
 
152
    <Member MemberName="DidDeliverNotification">
 
153
      <MemberSignature Language="C#" Value="public virtual void DidDeliverNotification (MonoMac.Foundation.NSUserNotificationCenter center, MonoMac.Foundation.NSUserNotification notification);" />
 
154
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DidDeliverNotification(class MonoMac.Foundation.NSUserNotificationCenter center, class MonoMac.Foundation.NSUserNotification notification) cil managed" />
 
155
      <MemberType>Method</MemberType>
 
156
      <AssemblyInfo>
 
157
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
158
      </AssemblyInfo>
 
159
      <Attributes>
 
160
        <Attribute>
 
161
          <AttributeName>MonoMac.Foundation.Export("userNotificationCenter:didDeliverNotification:")</AttributeName>
 
162
        </Attribute>
 
163
      </Attributes>
 
164
      <ReturnValue>
 
165
        <ReturnType>System.Void</ReturnType>
 
166
      </ReturnValue>
 
167
      <Parameters>
 
168
        <Parameter Name="center" Type="MonoMac.Foundation.NSUserNotificationCenter" />
 
169
        <Parameter Name="notification" Type="MonoMac.Foundation.NSUserNotification" />
 
170
      </Parameters>
 
171
      <Docs>
 
172
        <param name="center">To be added.</param>
 
173
        <param name="notification">To be added.</param>
 
174
        <summary>To be added.</summary>
 
175
        <remarks>To be added.</remarks>
 
176
      </Docs>
 
177
    </Member>
 
178
    <Member MemberName="ShouldPresentNotification">
 
179
      <MemberSignature Language="C#" Value="public virtual bool ShouldPresentNotification (MonoMac.Foundation.NSUserNotificationCenter center, MonoMac.Foundation.NSUserNotification notification);" />
 
180
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool ShouldPresentNotification(class MonoMac.Foundation.NSUserNotificationCenter center, class MonoMac.Foundation.NSUserNotification notification) cil managed" />
 
181
      <MemberType>Method</MemberType>
 
182
      <AssemblyInfo>
 
183
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
184
      </AssemblyInfo>
 
185
      <Attributes>
 
186
        <Attribute>
 
187
          <AttributeName>MonoMac.Foundation.Export("userNotificationCenter:shouldPresentNotification:")</AttributeName>
 
188
        </Attribute>
 
189
      </Attributes>
 
190
      <ReturnValue>
 
191
        <ReturnType>System.Boolean</ReturnType>
 
192
      </ReturnValue>
 
193
      <Parameters>
 
194
        <Parameter Name="center" Type="MonoMac.Foundation.NSUserNotificationCenter" />
 
195
        <Parameter Name="notification" Type="MonoMac.Foundation.NSUserNotification" />
 
196
      </Parameters>
 
197
      <Docs>
 
198
        <param name="center">To be added.</param>
 
199
        <param name="notification">To be added.</param>
 
200
        <summary>To be added.</summary>
 
201
        <returns>To be added.</returns>
 
202
        <remarks>To be added.</remarks>
 
203
      </Docs>
 
204
    </Member>
 
205
  </Members>
 
206
</Type>