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

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.CoreGraphics/CGContext.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>Graphics context and primitives to draw in them.</summary>
21
21
    <remarks>To be added.</remarks>
 
22
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=2c1eba2d-8abc-408e-8ee8-a03ffac6ffde">avTouch</related>
 
23
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=064a9ab4-1e58-4cf6-a1c2-aab04997aa57">Example_Drawing</related>
 
24
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=e980347f-d1db-4de0-9d6a-b9dc714dc58a">QuartzSample</related>
 
25
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=556b1b8f-088e-494f-bc1a-bd418c174ba3">ZoomingPdfViewer</related>
22
26
  </Docs>
23
27
  <Members>
24
28
    <Member MemberName=".ctor">
315
319
      </Docs>
316
320
    </Member>
317
321
    <Member MemberName="BeginTransparencyLayer">
318
 
      <MemberSignature Language="C#" Value="public void BeginTransparencyLayer (MonoMac.Foundation.NSDictionary auxiliaryInfo);" />
 
322
      <MemberSignature Language="C#" Value="public void BeginTransparencyLayer (MonoMac.Foundation.NSDictionary auxiliaryInfo = null);" />
319
323
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void BeginTransparencyLayer(class MonoMac.Foundation.NSDictionary auxiliaryInfo) cil managed" />
320
324
      <MemberType>Method</MemberType>
321
325
      <AssemblyInfo>
353
357
      </Docs>
354
358
    </Member>
355
359
    <Member MemberName="BeginTransparencyLayer">
356
 
      <MemberSignature Language="C#" Value="public void BeginTransparencyLayer (System.Drawing.RectangleF rectangle, MonoMac.Foundation.NSDictionary auxiliaryInfo);" />
 
360
      <MemberSignature Language="C#" Value="public void BeginTransparencyLayer (System.Drawing.RectangleF rectangle, MonoMac.Foundation.NSDictionary auxiliaryInfo = null);" />
357
361
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void BeginTransparencyLayer(valuetype System.Drawing.RectangleF rectangle, class MonoMac.Foundation.NSDictionary auxiliaryInfo) cil managed" />
358
362
      <MemberType>Method</MemberType>
359
363
      <AssemblyInfo>
655
659
      </ReturnValue>
656
660
      <Parameters />
657
661
      <Docs>
658
 
        <summary>Releases the resourced used by the CGContext object.</summary>
 
662
        <summary>Releases the resources used by the CGContext object.</summary>
659
663
        <remarks>
660
664
          <para>The Dispose method releases the resources used by the CGContext class.</para>
661
665
          <para>Calling the Dispose method when you are finished using the CGContext 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>
679
683
        <param name="disposing">
680
684
          <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>
681
685
        </param>
682
 
        <summary>Releases the resourced used by the CGContext object.</summary>
 
686
        <summary>Releases the resources used by the CGContext object.</summary>
683
687
        <remarks>
684
688
          <para>This Dispose method releases the resources used by the CGContext class.</para>
685
689
          <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>