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

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.CoreFoundation/CFRunLoop.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:
19
19
  <Docs>
20
20
    <summary>Main loop implementation for iPhone applications.</summary>
21
21
    <remarks />
 
22
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=7973effb-bd18-4109-b01f-a377f6f9cb73">reachability</related>
22
23
  </Docs>
23
24
  <Members>
 
25
    <Member MemberName="AddSource">
 
26
      <MemberSignature Language="C#" Value="public void AddSource (MonoMac.CoreFoundation.CFRunLoopSource source, MonoMac.Foundation.NSString mode);" />
 
27
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddSource(class MonoMac.CoreFoundation.CFRunLoopSource source, class MonoMac.Foundation.NSString mode) cil managed" />
 
28
      <MemberType>Method</MemberType>
 
29
      <AssemblyInfo>
 
30
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
31
      </AssemblyInfo>
 
32
      <ReturnValue>
 
33
        <ReturnType>System.Void</ReturnType>
 
34
      </ReturnValue>
 
35
      <Parameters>
 
36
        <Parameter Name="source" Type="MonoMac.CoreFoundation.CFRunLoopSource" />
 
37
        <Parameter Name="mode" Type="MonoMac.Foundation.NSString" />
 
38
      </Parameters>
 
39
      <Docs>
 
40
        <param name="source">To be added.</param>
 
41
        <param name="mode">To be added.</param>
 
42
        <summary>To be added.</summary>
 
43
        <remarks>To be added.</remarks>
 
44
      </Docs>
 
45
    </Member>
24
46
    <Member MemberName="CFDefaultRunLoopMode">
25
47
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString CFDefaultRunLoopMode { get; }" />
26
48
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString CFDefaultRunLoopMode" />
53
75
        <remarks>To be added.</remarks>
54
76
      </Docs>
55
77
    </Member>
 
78
    <Member MemberName="ContainsSource">
 
79
      <MemberSignature Language="C#" Value="public bool ContainsSource (MonoMac.CoreFoundation.CFRunLoopSource source, MonoMac.Foundation.NSString mode);" />
 
80
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool ContainsSource(class MonoMac.CoreFoundation.CFRunLoopSource source, class MonoMac.Foundation.NSString mode) cil managed" />
 
81
      <MemberType>Method</MemberType>
 
82
      <AssemblyInfo>
 
83
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
84
      </AssemblyInfo>
 
85
      <ReturnValue>
 
86
        <ReturnType>System.Boolean</ReturnType>
 
87
      </ReturnValue>
 
88
      <Parameters>
 
89
        <Parameter Name="source" Type="MonoMac.CoreFoundation.CFRunLoopSource" />
 
90
        <Parameter Name="mode" Type="MonoMac.Foundation.NSString" />
 
91
      </Parameters>
 
92
      <Docs>
 
93
        <param name="source">To be added.</param>
 
94
        <param name="mode">To be added.</param>
 
95
        <summary>To be added.</summary>
 
96
        <returns>To be added.</returns>
 
97
        <remarks>To be added.</remarks>
 
98
      </Docs>
 
99
    </Member>
56
100
    <Member MemberName="Current">
57
101
      <MemberSignature Language="C#" Value="public static MonoMac.CoreFoundation.CFRunLoop Current { get; }" />
58
102
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.CoreFoundation.CFRunLoop Current" />
81
125
      </ReturnValue>
82
126
      <Parameters />
83
127
      <Docs>
84
 
        <summary>Releases the resourced used by the CFRunLoop object.</summary>
 
128
        <summary>Releases the resources used by the CFRunLoop object.</summary>
85
129
        <remarks>
86
130
          <para>The Dispose method releases the resources used by the CFRunLoop class.</para>
87
131
          <para>Calling the Dispose method when you are finished using the CFRunLoop ensures that all external resources used by this managed object are released as soon as possible.  Once you have invoked the Dispose method, the object is no longer useful and you should no longer make any calls to it.  For more information on releasing resources see ``Cleaning up Unmananaged Resources'' at http://msdn.microsoft.com/en-us/library/498928w2.aspx</para>
105
149
        <param name="disposing">
106
150
          <para>If set to <see langword="true" />, the method is invoked directly and will dispose manage and unmanaged resources;   If set to <see langword="false" /> the method is being called by the garbage collector finalizer and should only release unmanaged resources.</para>
107
151
        </param>
108
 
        <summary>Releases the resourced used by the CFRunLoop object.</summary>
 
152
        <summary>Releases the resources used by the CFRunLoop object.</summary>
109
153
        <remarks>
110
154
          <para>This Dispose method releases the resources used by the CFRunLoop class.</para>
111
155
          <para>This method is called by both the Dispose() method and the object finalizer (Finalize).    When invoked by the Dispose method, the parameter disposting <paramref name="disposing" /> is set to <see langword="true" /> and any managed object references that this object holds are also disposed or released;  when invoked by the object finalizer, on the finalizer thread the value is set to <see langword="false" />. </para>
290
334
        <remarks>To be added.</remarks>
291
335
      </Docs>
292
336
    </Member>
 
337
    <Member MemberName="RemoveSource">
 
338
      <MemberSignature Language="C#" Value="public bool RemoveSource (MonoMac.CoreFoundation.CFRunLoopSource source, MonoMac.Foundation.NSString mode);" />
 
339
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool RemoveSource(class MonoMac.CoreFoundation.CFRunLoopSource source, class MonoMac.Foundation.NSString mode) cil managed" />
 
340
      <MemberType>Method</MemberType>
 
341
      <AssemblyInfo>
 
342
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
343
      </AssemblyInfo>
 
344
      <ReturnValue>
 
345
        <ReturnType>System.Boolean</ReturnType>
 
346
      </ReturnValue>
 
347
      <Parameters>
 
348
        <Parameter Name="source" Type="MonoMac.CoreFoundation.CFRunLoopSource" />
 
349
        <Parameter Name="mode" Type="MonoMac.Foundation.NSString" />
 
350
      </Parameters>
 
351
      <Docs>
 
352
        <param name="source">To be added.</param>
 
353
        <param name="mode">To be added.</param>
 
354
        <summary>To be added.</summary>
 
355
        <returns>To be added.</returns>
 
356
        <remarks>To be added.</remarks>
 
357
      </Docs>
 
358
    </Member>
293
359
    <Member MemberName="Run">
294
360
      <MemberSignature Language="C#" Value="public void Run ();" />
295
361
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Run() cil managed" />