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

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.AVFoundation/AVCaptureVideoDataOutputSampleBufferDelegate.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="AVCaptureVideoDataOutputSampleBufferDelegate" FullName="MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate">
 
2
  <TypeSignature Language="C#" Value="public class AVCaptureVideoDataOutputSampleBufferDelegate : MonoMac.Foundation.NSObject" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AVCaptureVideoDataOutputSampleBufferDelegate 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("AVCaptureVideoDataOutputSampleBufferDelegate", true)</AttributeName>
 
18
    </Attribute>
 
19
  </Attributes>
 
20
  <Docs>
 
21
    <summary>Delegate class used to notify when a sample buffer has been written.</summary>
 
22
    <remarks>To be added.</remarks>
 
23
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=9fa28988-64fe-4365-b2b7-95542daf4f9b">avcaptureframes</related>
 
24
  </Docs>
 
25
  <Members>
 
26
    <Member MemberName=".ctor">
 
27
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutputSampleBufferDelegate ();" />
 
28
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
 
29
      <MemberType>Constructor</MemberType>
 
30
      <AssemblyInfo>
 
31
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
32
      </AssemblyInfo>
 
33
      <Attributes>
 
34
        <Attribute>
 
35
          <AttributeName>MonoMac.Foundation.Export("init")</AttributeName>
 
36
        </Attribute>
 
37
        <Attribute>
 
38
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
39
        </Attribute>
 
40
      </Attributes>
 
41
      <Parameters />
 
42
      <Docs>
 
43
        <summary>Default constructor that initializes a new instance of this class with no parameters.</summary>
 
44
        <remarks>
 
45
        </remarks>
 
46
      </Docs>
 
47
    </Member>
 
48
    <Member MemberName=".ctor">
 
49
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutputSampleBufferDelegate (MonoMac.Foundation.NSCoder coder);" />
 
50
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSCoder coder) cil managed" />
 
51
      <MemberType>Constructor</MemberType>
 
52
      <AssemblyInfo>
 
53
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
54
      </AssemblyInfo>
 
55
      <Attributes>
 
56
        <Attribute>
 
57
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
 
58
        </Attribute>
 
59
        <Attribute>
 
60
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
61
        </Attribute>
 
62
      </Attributes>
 
63
      <Parameters>
 
64
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
 
65
      </Parameters>
 
66
      <Docs>
 
67
        <param name="coder">The unarchiver object.</param>
 
68
        <summary>A constructor that initializes the object from the data stored in the unarchiver object.</summary>
 
69
        <remarks>This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization).</remarks>
 
70
      </Docs>
 
71
    </Member>
 
72
    <Member MemberName=".ctor">
 
73
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutputSampleBufferDelegate (MonoMac.Foundation.NSObjectFlag t);" />
 
74
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSObjectFlag t) cil managed" />
 
75
      <MemberType>Constructor</MemberType>
 
76
      <AssemblyInfo>
 
77
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
78
      </AssemblyInfo>
 
79
      <Attributes>
 
80
        <Attribute>
 
81
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
82
        </Attribute>
 
83
      </Attributes>
 
84
      <Parameters>
 
85
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
 
86
      </Parameters>
 
87
      <Docs>
 
88
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
 
89
        <summary>Constructor to call on derived classes when the derived class has an [Export] constructor.</summary>
 
90
        <remarks>
 
91
          <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>
 
92
          <example>
 
93
            <code lang="C#">
 
94
public class MyClass : BaseClass {
 
95
    [Export ("initWithFoo:")]
 
96
    public MyClass (string foo) : base (NSObjectFlag.Empty)
 
97
    {
 
98
        ...
 
99
    }
 
100
</code>
 
101
          </example>
 
102
        </remarks>
 
103
      </Docs>
 
104
    </Member>
 
105
    <Member MemberName=".ctor">
 
106
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutputSampleBufferDelegate (IntPtr handle);" />
 
107
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(native int handle) cil managed" />
 
108
      <MemberType>Constructor</MemberType>
 
109
      <AssemblyInfo>
 
110
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
111
      </AssemblyInfo>
 
112
      <Attributes>
 
113
        <Attribute>
 
114
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
115
        </Attribute>
 
116
      </Attributes>
 
117
      <Parameters>
 
118
        <Parameter Name="handle" Type="System.IntPtr" />
 
119
      </Parameters>
 
120
      <Docs>
 
121
        <param name="handle">Pointer (handle) to the unmanaged object.</param>
 
122
        <summary>A constructor used when creating managed representations of unmanaged objects;  Called by the runtime.</summary>
 
123
        <remarks>
 
124
          <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>
 
125
        </remarks>
 
126
      </Docs>
 
127
    </Member>
 
128
    <Member MemberName="DidOutputSampleBuffer">
 
129
      <MemberSignature Language="C#" Value="public virtual void DidOutputSampleBuffer (MonoMac.AVFoundation.AVCaptureOutput captureOutput, MonoMac.CoreMedia.CMSampleBuffer sampleBuffer, MonoMac.AVFoundation.AVCaptureConnection connection);" />
 
130
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DidOutputSampleBuffer(class MonoMac.AVFoundation.AVCaptureOutput captureOutput, class MonoMac.CoreMedia.CMSampleBuffer sampleBuffer, class MonoMac.AVFoundation.AVCaptureConnection connection) cil managed" />
 
131
      <MemberType>Method</MemberType>
 
132
      <AssemblyInfo>
 
133
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
134
      </AssemblyInfo>
 
135
      <Attributes>
 
136
        <Attribute>
 
137
          <AttributeName>MonoMac.Foundation.Export("captureOutput:didOutputSampleBuffer:fromConnection:")</AttributeName>
 
138
        </Attribute>
 
139
      </Attributes>
 
140
      <ReturnValue>
 
141
        <ReturnType>System.Void</ReturnType>
 
142
      </ReturnValue>
 
143
      <Parameters>
 
144
        <Parameter Name="captureOutput" Type="MonoMac.AVFoundation.AVCaptureOutput" />
 
145
        <Parameter Name="sampleBuffer" Type="MonoMac.CoreMedia.CMSampleBuffer" />
 
146
        <Parameter Name="connection" Type="MonoMac.AVFoundation.AVCaptureConnection" />
 
147
      </Parameters>
 
148
      <Docs>
 
149
        <param name="captureOutput">To be added.</param>
 
150
        <param name="sampleBuffer">To be added.</param>
 
151
        <param name="connection">To be added.</param>
 
152
        <summary>Method invoked when a sample buffer has been written.</summary>
 
153
        <remarks>To be added.</remarks>
 
154
      </Docs>
 
155
    </Member>
 
156
  </Members>
 
157
</Type>