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

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.AppKit/NSSharingServiceDelegate.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="NSSharingServiceDelegate" FullName="MonoMac.AppKit.NSSharingServiceDelegate">
 
2
  <TypeSignature Language="C#" Value="public class NSSharingServiceDelegate : MonoMac.Foundation.NSObject" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit NSSharingServiceDelegate 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("NSSharingServiceDelegate", 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 NSSharingServiceDelegate ();" />
 
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 NSSharingServiceDelegate (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 NSSharingServiceDelegate (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 NSSharingServiceDelegate (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="DidFailToShareItems">
 
127
      <MemberSignature Language="C#" Value="public virtual void DidFailToShareItems (MonoMac.AppKit.NSSharingService sharingService, MonoMac.Foundation.NSObject[] items, MonoMac.Foundation.NSError error);" />
 
128
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DidFailToShareItems(class MonoMac.AppKit.NSSharingService sharingService, class MonoMac.Foundation.NSObject[] items, class MonoMac.Foundation.NSError error) 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("sharingService:didFailToShareItems:error:")</AttributeName>
 
136
        </Attribute>
 
137
      </Attributes>
 
138
      <ReturnValue>
 
139
        <ReturnType>System.Void</ReturnType>
 
140
      </ReturnValue>
 
141
      <Parameters>
 
142
        <Parameter Name="sharingService" Type="MonoMac.AppKit.NSSharingService" />
 
143
        <Parameter Name="items" Type="MonoMac.Foundation.NSObject[]" />
 
144
        <Parameter Name="error" Type="MonoMac.Foundation.NSError" />
 
145
      </Parameters>
 
146
      <Docs>
 
147
        <param name="sharingService">To be added.</param>
 
148
        <param name="items">To be added.</param>
 
149
        <param name="error">To be added.</param>
 
150
        <summary>To be added.</summary>
 
151
        <remarks>To be added.</remarks>
 
152
      </Docs>
 
153
    </Member>
 
154
    <Member MemberName="DidShareItems">
 
155
      <MemberSignature Language="C#" Value="public virtual void DidShareItems (MonoMac.AppKit.NSSharingService sharingService, MonoMac.Foundation.NSObject[] items);" />
 
156
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DidShareItems(class MonoMac.AppKit.NSSharingService sharingService, class MonoMac.Foundation.NSObject[] items) cil managed" />
 
157
      <MemberType>Method</MemberType>
 
158
      <AssemblyInfo>
 
159
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
160
      </AssemblyInfo>
 
161
      <Attributes>
 
162
        <Attribute>
 
163
          <AttributeName>MonoMac.Foundation.Export("sharingService:didShareItems:")</AttributeName>
 
164
        </Attribute>
 
165
      </Attributes>
 
166
      <ReturnValue>
 
167
        <ReturnType>System.Void</ReturnType>
 
168
      </ReturnValue>
 
169
      <Parameters>
 
170
        <Parameter Name="sharingService" Type="MonoMac.AppKit.NSSharingService" />
 
171
        <Parameter Name="items" Type="MonoMac.Foundation.NSObject[]" />
 
172
      </Parameters>
 
173
      <Docs>
 
174
        <param name="sharingService">To be added.</param>
 
175
        <param name="items">To be added.</param>
 
176
        <summary>To be added.</summary>
 
177
        <remarks>To be added.</remarks>
 
178
      </Docs>
 
179
    </Member>
 
180
    <Member MemberName="SourceFrameOnScreenForShareItem">
 
181
      <MemberSignature Language="C#" Value="public virtual System.Drawing.RectangleF SourceFrameOnScreenForShareItem (MonoMac.AppKit.NSSharingService sharingService, MonoMac.AppKit.NSPasteboardWriting item);" />
 
182
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance valuetype System.Drawing.RectangleF SourceFrameOnScreenForShareItem(class MonoMac.AppKit.NSSharingService sharingService, class MonoMac.AppKit.NSPasteboardWriting item) cil managed" />
 
183
      <MemberType>Method</MemberType>
 
184
      <AssemblyInfo>
 
185
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
186
      </AssemblyInfo>
 
187
      <Attributes>
 
188
        <Attribute>
 
189
          <AttributeName>MonoMac.Foundation.Export("sharingService:sourceFrameOnScreenForShareItem:")</AttributeName>
 
190
        </Attribute>
 
191
      </Attributes>
 
192
      <ReturnValue>
 
193
        <ReturnType>System.Drawing.RectangleF</ReturnType>
 
194
      </ReturnValue>
 
195
      <Parameters>
 
196
        <Parameter Name="sharingService" Type="MonoMac.AppKit.NSSharingService" />
 
197
        <Parameter Name="item" Type="MonoMac.AppKit.NSPasteboardWriting" />
 
198
      </Parameters>
 
199
      <Docs>
 
200
        <param name="sharingService">To be added.</param>
 
201
        <param name="item">To be added.</param>
 
202
        <summary>To be added.</summary>
 
203
        <returns>To be added.</returns>
 
204
        <remarks>To be added.</remarks>
 
205
      </Docs>
 
206
    </Member>
 
207
    <Member MemberName="SourceWindowForShareItems">
 
208
      <MemberSignature Language="C#" Value="public virtual MonoMac.AppKit.NSWindow SourceWindowForShareItems (MonoMac.AppKit.NSSharingService sharingService, MonoMac.Foundation.NSObject[] items, MonoMac.AppKit.NSSharingContentScope sharingContentScope);" />
 
209
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.AppKit.NSWindow SourceWindowForShareItems(class MonoMac.AppKit.NSSharingService sharingService, class MonoMac.Foundation.NSObject[] items, valuetype MonoMac.AppKit.NSSharingContentScope sharingContentScope) cil managed" />
 
210
      <MemberType>Method</MemberType>
 
211
      <AssemblyInfo>
 
212
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
213
      </AssemblyInfo>
 
214
      <Attributes>
 
215
        <Attribute>
 
216
          <AttributeName>MonoMac.Foundation.Export("sharingService:sourceWindowForShareItems:sharingContentScope:")</AttributeName>
 
217
        </Attribute>
 
218
      </Attributes>
 
219
      <ReturnValue>
 
220
        <ReturnType>MonoMac.AppKit.NSWindow</ReturnType>
 
221
      </ReturnValue>
 
222
      <Parameters>
 
223
        <Parameter Name="sharingService" Type="MonoMac.AppKit.NSSharingService" />
 
224
        <Parameter Name="items" Type="MonoMac.Foundation.NSObject[]" />
 
225
        <Parameter Name="sharingContentScope" Type="MonoMac.AppKit.NSSharingContentScope" />
 
226
      </Parameters>
 
227
      <Docs>
 
228
        <param name="sharingService">To be added.</param>
 
229
        <param name="items">To be added.</param>
 
230
        <param name="sharingContentScope">To be added.</param>
 
231
        <summary>To be added.</summary>
 
232
        <returns>To be added.</returns>
 
233
        <remarks>To be added.</remarks>
 
234
      </Docs>
 
235
    </Member>
 
236
    <Member MemberName="TransitionImageForShareItem">
 
237
      <MemberSignature Language="C#" Value="public virtual MonoMac.AppKit.NSImage TransitionImageForShareItem (MonoMac.AppKit.NSSharingService sharingService, MonoMac.AppKit.NSPasteboardWriting item, System.Drawing.RectangleF contentRect);" />
 
238
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.AppKit.NSImage TransitionImageForShareItem(class MonoMac.AppKit.NSSharingService sharingService, class MonoMac.AppKit.NSPasteboardWriting item, valuetype System.Drawing.RectangleF contentRect) cil managed" />
 
239
      <MemberType>Method</MemberType>
 
240
      <AssemblyInfo>
 
241
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
242
      </AssemblyInfo>
 
243
      <Attributes>
 
244
        <Attribute>
 
245
          <AttributeName>MonoMac.Foundation.Export("sharingService:transitionImageForShareItem:contentRect:")</AttributeName>
 
246
        </Attribute>
 
247
      </Attributes>
 
248
      <ReturnValue>
 
249
        <ReturnType>MonoMac.AppKit.NSImage</ReturnType>
 
250
      </ReturnValue>
 
251
      <Parameters>
 
252
        <Parameter Name="sharingService" Type="MonoMac.AppKit.NSSharingService" />
 
253
        <Parameter Name="item" Type="MonoMac.AppKit.NSPasteboardWriting" />
 
254
        <Parameter Name="contentRect" Type="System.Drawing.RectangleF" />
 
255
      </Parameters>
 
256
      <Docs>
 
257
        <param name="sharingService">To be added.</param>
 
258
        <param name="item">To be added.</param>
 
259
        <param name="contentRect">To be added.</param>
 
260
        <summary>To be added.</summary>
 
261
        <returns>To be added.</returns>
 
262
        <remarks>To be added.</remarks>
 
263
      </Docs>
 
264
    </Member>
 
265
    <Member MemberName="WillShareItems">
 
266
      <MemberSignature Language="C#" Value="public virtual void WillShareItems (MonoMac.AppKit.NSSharingService sharingService, MonoMac.Foundation.NSObject[] items);" />
 
267
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void WillShareItems(class MonoMac.AppKit.NSSharingService sharingService, class MonoMac.Foundation.NSObject[] items) cil managed" />
 
268
      <MemberType>Method</MemberType>
 
269
      <AssemblyInfo>
 
270
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
271
      </AssemblyInfo>
 
272
      <Attributes>
 
273
        <Attribute>
 
274
          <AttributeName>MonoMac.Foundation.Export("sharingService:willShareItems:")</AttributeName>
 
275
        </Attribute>
 
276
      </Attributes>
 
277
      <ReturnValue>
 
278
        <ReturnType>System.Void</ReturnType>
 
279
      </ReturnValue>
 
280
      <Parameters>
 
281
        <Parameter Name="sharingService" Type="MonoMac.AppKit.NSSharingService" />
 
282
        <Parameter Name="items" Type="MonoMac.Foundation.NSObject[]" />
 
283
      </Parameters>
 
284
      <Docs>
 
285
        <param name="sharingService">To be added.</param>
 
286
        <param name="items">To be added.</param>
 
287
        <summary>To be added.</summary>
 
288
        <remarks>To be added.</remarks>
 
289
      </Docs>
 
290
    </Member>
 
291
  </Members>
 
292
</Type>