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

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.AVFoundation/AVCaptureVideoDataOutput.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="AVCaptureVideoDataOutput" FullName="MonoMac.AVFoundation.AVCaptureVideoDataOutput">
 
2
  <TypeSignature Language="C#" Value="public class AVCaptureVideoDataOutput : MonoMac.AVFoundation.AVCaptureOutput" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AVCaptureVideoDataOutput extends MonoMac.AVFoundation.AVCaptureOutput" />
 
4
  <AssemblyInfo>
 
5
    <AssemblyName>MonoMac</AssemblyName>
 
6
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
7
  </AssemblyInfo>
 
8
  <Base>
 
9
    <BaseTypeName>MonoMac.AVFoundation.AVCaptureOutput</BaseTypeName>
 
10
  </Base>
 
11
  <Interfaces />
 
12
  <Attributes>
 
13
    <Attribute>
 
14
      <AttributeName>MonoMac.Foundation.Register("AVCaptureVideoDataOutput", true)</AttributeName>
 
15
    </Attribute>
 
16
  </Attributes>
 
17
  <Docs>
 
18
    <summary>AVCaptureOutput that captures frames from the video being recorded.</summary>
 
19
    <remarks>To be added.</remarks>
 
20
    <related type="sample" href="http://samples.xamarin.com/Samples/ByGuid?guid=9fa28988-64fe-4365-b2b7-95542daf4f9b">avcaptureframes</related>
 
21
  </Docs>
 
22
  <Members>
 
23
    <Member MemberName=".ctor">
 
24
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutput ();" />
 
25
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
 
26
      <MemberType>Constructor</MemberType>
 
27
      <AssemblyInfo>
 
28
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
29
      </AssemblyInfo>
 
30
      <Attributes>
 
31
        <Attribute>
 
32
          <AttributeName>MonoMac.Foundation.Export("init")</AttributeName>
 
33
        </Attribute>
 
34
        <Attribute>
 
35
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
36
        </Attribute>
 
37
      </Attributes>
 
38
      <Parameters />
 
39
      <Docs>
 
40
        <summary>Default constructor that initializes a new instance of this class with no parameters.</summary>
 
41
        <remarks>
 
42
        </remarks>
 
43
      </Docs>
 
44
    </Member>
 
45
    <Member MemberName=".ctor">
 
46
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutput (MonoMac.Foundation.NSCoder coder);" />
 
47
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSCoder coder) cil managed" />
 
48
      <MemberType>Constructor</MemberType>
 
49
      <AssemblyInfo>
 
50
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
51
      </AssemblyInfo>
 
52
      <Attributes>
 
53
        <Attribute>
 
54
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
 
55
        </Attribute>
 
56
        <Attribute>
 
57
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
58
        </Attribute>
 
59
      </Attributes>
 
60
      <Parameters>
 
61
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
 
62
      </Parameters>
 
63
      <Docs>
 
64
        <param name="coder">The unarchiver object.</param>
 
65
        <summary>A constructor that initializes the object from the data stored in the unarchiver object.</summary>
 
66
        <remarks>This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization).</remarks>
 
67
      </Docs>
 
68
    </Member>
 
69
    <Member MemberName=".ctor">
 
70
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutput (MonoMac.Foundation.NSObjectFlag t);" />
 
71
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSObjectFlag t) cil managed" />
 
72
      <MemberType>Constructor</MemberType>
 
73
      <AssemblyInfo>
 
74
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
75
      </AssemblyInfo>
 
76
      <Attributes>
 
77
        <Attribute>
 
78
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
79
        </Attribute>
 
80
      </Attributes>
 
81
      <Parameters>
 
82
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
 
83
      </Parameters>
 
84
      <Docs>
 
85
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
 
86
        <summary>Constructor to call on derived classes when the derived class has an [Export] constructor.</summary>
 
87
        <remarks>
 
88
          <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>
 
89
          <example>
 
90
            <code lang="C#">
 
91
public class MyClass : BaseClass {
 
92
    [Export ("initWithFoo:")]
 
93
    public MyClass (string foo) : base (NSObjectFlag.Empty)
 
94
    {
 
95
        ...
 
96
    }
 
97
</code>
 
98
          </example>
 
99
        </remarks>
 
100
      </Docs>
 
101
    </Member>
 
102
    <Member MemberName=".ctor">
 
103
      <MemberSignature Language="C#" Value="public AVCaptureVideoDataOutput (IntPtr handle);" />
 
104
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(native int handle) cil managed" />
 
105
      <MemberType>Constructor</MemberType>
 
106
      <AssemblyInfo>
 
107
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
108
      </AssemblyInfo>
 
109
      <Attributes>
 
110
        <Attribute>
 
111
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
112
        </Attribute>
 
113
      </Attributes>
 
114
      <Parameters>
 
115
        <Parameter Name="handle" Type="System.IntPtr" />
 
116
      </Parameters>
 
117
      <Docs>
 
118
        <param name="handle">Pointer (handle) to the unmanaged object.</param>
 
119
        <summary>A constructor used when creating managed representations of unmanaged objects;  Called by the runtime.</summary>
 
120
        <remarks>
 
121
          <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>
 
122
        </remarks>
 
123
      </Docs>
 
124
    </Member>
 
125
    <Member MemberName="AlwaysDiscardsLateVideoFrames">
 
126
      <MemberSignature Language="C#" Value="public virtual bool AlwaysDiscardsLateVideoFrames { get; set; }" />
 
127
      <MemberSignature Language="ILAsm" Value=".property instance bool AlwaysDiscardsLateVideoFrames" />
 
128
      <MemberType>Property</MemberType>
 
129
      <AssemblyInfo>
 
130
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
131
      </AssemblyInfo>
 
132
      <Attributes>
 
133
        <Attribute>
 
134
          <AttributeName>get: MonoMac.Foundation.Export("alwaysDiscardsLateVideoFrames")</AttributeName>
 
135
        </Attribute>
 
136
        <Attribute>
 
137
          <AttributeName>set: MonoMac.Foundation.Export("setAlwaysDiscardsLateVideoFrames:")</AttributeName>
 
138
        </Attribute>
 
139
      </Attributes>
 
140
      <ReturnValue>
 
141
        <ReturnType>System.Boolean</ReturnType>
 
142
      </ReturnValue>
 
143
      <Docs>
 
144
        <summary>Whether to drop video frames if they arrive late.</summary>
 
145
        <value>To be added.</value>
 
146
        <remarks>To be added.</remarks>
 
147
      </Docs>
 
148
    </Member>
 
149
    <Member MemberName="AvailableVideoCodecTypes">
 
150
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSString[] AvailableVideoCodecTypes { get; }" />
 
151
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSString[] AvailableVideoCodecTypes" />
 
152
      <MemberType>Property</MemberType>
 
153
      <AssemblyInfo>
 
154
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
155
      </AssemblyInfo>
 
156
      <Attributes>
 
157
        <Attribute>
 
158
          <AttributeName>get: MonoMac.Foundation.Export("availableVideoCodecTypes")</AttributeName>
 
159
        </Attribute>
 
160
      </Attributes>
 
161
      <ReturnValue>
 
162
        <ReturnType>MonoMac.Foundation.NSString[]</ReturnType>
 
163
      </ReturnValue>
 
164
      <Docs>
 
165
        <summary>To be added.</summary>
 
166
        <value>To be added.</value>
 
167
        <remarks>To be added.</remarks>
 
168
      </Docs>
 
169
    </Member>
 
170
    <Member MemberName="AvailableVideoCVPixelFormatTypes">
 
171
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSNumber[] AvailableVideoCVPixelFormatTypes { get; }" />
 
172
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSNumber[] AvailableVideoCVPixelFormatTypes" />
 
173
      <MemberType>Property</MemberType>
 
174
      <AssemblyInfo>
 
175
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
176
      </AssemblyInfo>
 
177
      <Attributes>
 
178
        <Attribute>
 
179
          <AttributeName>get: MonoMac.Foundation.Export("availableVideoCVPixelFormatTypes")</AttributeName>
 
180
        </Attribute>
 
181
      </Attributes>
 
182
      <ReturnValue>
 
183
        <ReturnType>MonoMac.Foundation.NSNumber[]</ReturnType>
 
184
      </ReturnValue>
 
185
      <Docs>
 
186
        <summary>To be added.</summary>
 
187
        <value>To be added.</value>
 
188
        <remarks>To be added.</remarks>
 
189
      </Docs>
 
190
    </Member>
 
191
    <Member MemberName="ClassHandle">
 
192
      <MemberSignature Language="C#" Value="public override IntPtr ClassHandle { get; }" />
 
193
      <MemberSignature Language="ILAsm" Value=".property instance native int ClassHandle" />
 
194
      <MemberType>Property</MemberType>
 
195
      <AssemblyInfo>
 
196
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
197
      </AssemblyInfo>
 
198
      <ReturnValue>
 
199
        <ReturnType>System.IntPtr</ReturnType>
 
200
      </ReturnValue>
 
201
      <Docs>
 
202
        <summary>The handle for this class.</summary>
 
203
        <value>The pointer to the Objective-C class.</value>
 
204
        <remarks>Each MonoMac class mirrors an unmanaged Objective-C class.   This value contains the pointer to the Objective-C class, it is similar to calling objc_getClass with the object name.</remarks>
 
205
      </Docs>
 
206
    </Member>
 
207
    <Member MemberName="CompressedVideoSetting">
 
208
      <MemberSignature Language="C#" Value="public MonoMac.AVFoundation.AVVideoSettingsCompressed CompressedVideoSetting { get; set; }" />
 
209
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVVideoSettingsCompressed CompressedVideoSetting" />
 
210
      <MemberType>Property</MemberType>
 
211
      <AssemblyInfo>
 
212
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
213
      </AssemblyInfo>
 
214
      <ReturnValue>
 
215
        <ReturnType>MonoMac.AVFoundation.AVVideoSettingsCompressed</ReturnType>
 
216
      </ReturnValue>
 
217
      <Docs>
 
218
        <summary>To be added.</summary>
 
219
        <value>To be added.</value>
 
220
        <remarks>To be added.</remarks>
 
221
      </Docs>
 
222
    </Member>
 
223
    <Member MemberName="Dispose">
 
224
      <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
 
225
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Dispose(bool disposing) cil managed" />
 
226
      <MemberType>Method</MemberType>
 
227
      <AssemblyInfo>
 
228
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
229
      </AssemblyInfo>
 
230
      <ReturnValue>
 
231
        <ReturnType>System.Void</ReturnType>
 
232
      </ReturnValue>
 
233
      <Parameters>
 
234
        <Parameter Name="disposing" Type="System.Boolean" />
 
235
      </Parameters>
 
236
      <Docs>
 
237
        <param name="disposing">
 
238
          <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>
 
239
        </param>
 
240
        <summary>Releases the resources used by the AVCaptureVideoDataOutput object.</summary>
 
241
        <remarks>
 
242
          <para>This Dispose method releases the resources used by the AVCaptureVideoDataOutput class.</para>
 
243
          <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>
 
244
          <para>Calling the Dispose method when you are finished using the AVCaptureVideoDataOutput 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.</para>
 
245
          <para>  For more information on how to override this method and on the Dispose/IDisposable pattern, read the ``Implementing a Dispose Method'' document at http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx</para>
 
246
        </remarks>
 
247
      </Docs>
 
248
    </Member>
 
249
    <Member MemberName="MinFrameDuration">
 
250
      <MemberSignature Language="C#" Value="public virtual MonoMac.CoreMedia.CMTime MinFrameDuration { get; set; }" />
 
251
      <MemberSignature Language="ILAsm" Value=".property instance valuetype MonoMac.CoreMedia.CMTime MinFrameDuration" />
 
252
      <MemberType>Property</MemberType>
 
253
      <AssemblyInfo>
 
254
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
255
      </AssemblyInfo>
 
256
      <Attributes>
 
257
        <Attribute>
 
258
          <AttributeName>System.Obsolete("On iOS 5.0 and later, you can use AVCaptureConnection's MinVideoFrameDuration", false)</AttributeName>
 
259
        </Attribute>
 
260
        <Attribute>
 
261
          <AttributeName>get: MonoMac.Foundation.Export("minFrameDuration")</AttributeName>
 
262
        </Attribute>
 
263
        <Attribute>
 
264
          <AttributeName>set: MonoMac.Foundation.Export("setMinFrameDuration:")</AttributeName>
 
265
        </Attribute>
 
266
      </Attributes>
 
267
      <ReturnValue>
 
268
        <ReturnType>MonoMac.CoreMedia.CMTime</ReturnType>
 
269
      </ReturnValue>
 
270
      <Docs>
 
271
        <summary>Minimum frame duration.</summary>
 
272
        <value>To be added.</value>
 
273
        <remarks>To be added.</remarks>
 
274
      </Docs>
 
275
    </Member>
 
276
    <Member MemberName="SampleBufferCallbackQueue">
 
277
      <MemberSignature Language="C#" Value="public virtual MonoMac.CoreFoundation.DispatchQueue SampleBufferCallbackQueue { get; }" />
 
278
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.CoreFoundation.DispatchQueue SampleBufferCallbackQueue" />
 
279
      <MemberType>Property</MemberType>
 
280
      <AssemblyInfo>
 
281
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
282
      </AssemblyInfo>
 
283
      <Attributes>
 
284
        <Attribute>
 
285
          <AttributeName>get: MonoMac.Foundation.Export("sampleBufferCallbackQueue")</AttributeName>
 
286
        </Attribute>
 
287
      </Attributes>
 
288
      <ReturnValue>
 
289
        <ReturnType>MonoMac.CoreFoundation.DispatchQueue</ReturnType>
 
290
      </ReturnValue>
 
291
      <Docs>
 
292
        <summary>Gets the DispatchQueue used by the sampling buffer delegate.</summary>
 
293
        <value>To be added.</value>
 
294
        <remarks>To be added.</remarks>
 
295
      </Docs>
 
296
    </Member>
 
297
    <Member MemberName="SampleBufferDelegate">
 
298
      <MemberSignature Language="C#" Value="public virtual MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate SampleBufferDelegate { get; }" />
 
299
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate SampleBufferDelegate" />
 
300
      <MemberType>Property</MemberType>
 
301
      <AssemblyInfo>
 
302
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
303
      </AssemblyInfo>
 
304
      <Attributes>
 
305
        <Attribute>
 
306
          <AttributeName>get: MonoMac.Foundation.Export("sampleBufferDelegate")</AttributeName>
 
307
        </Attribute>
 
308
      </Attributes>
 
309
      <ReturnValue>
 
310
        <ReturnType>MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate</ReturnType>
 
311
      </ReturnValue>
 
312
      <Docs>
 
313
        <summary>Gets the sampling buffer delegate.</summary>
 
314
        <value>To be added.</value>
 
315
        <remarks>To be added.</remarks>
 
316
      </Docs>
 
317
    </Member>
 
318
    <Member MemberName="SetSampleBufferDelegate">
 
319
      <MemberSignature Language="C#" Value="public virtual void SetSampleBufferDelegate (MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate sampleBufferDelegate, IntPtr sampleBufferCallbackQueue);" />
 
320
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetSampleBufferDelegate(class MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate sampleBufferDelegate, native int sampleBufferCallbackQueue) cil managed" />
 
321
      <MemberType>Method</MemberType>
 
322
      <AssemblyInfo>
 
323
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
324
      </AssemblyInfo>
 
325
      <Attributes>
 
326
        <Attribute>
 
327
          <AttributeName>MonoMac.Foundation.Export("setSampleBufferDelegate:queue:")</AttributeName>
 
328
        </Attribute>
 
329
      </Attributes>
 
330
      <ReturnValue>
 
331
        <ReturnType>System.Void</ReturnType>
 
332
      </ReturnValue>
 
333
      <Parameters>
 
334
        <Parameter Name="sampleBufferDelegate" Type="MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate" />
 
335
        <Parameter Name="sampleBufferCallbackQueue" Type="System.IntPtr" />
 
336
      </Parameters>
 
337
      <Docs>
 
338
        <param name="sampleBufferDelegate">
 
339
          <para>The instance of the class that will receive the video samples as they are produced.   Use the <see langword="null" /> value to stop receiving messages.</para>
 
340
          <para tool="nullallowed">This parameter can be <see langword="null" />.</para>
 
341
        </param>
 
342
        <param name="sampleBufferCallbackQueue">The queue in which to invoke the sampleBufferDelegate, this value can only be <see langword="null" /> when you are also clearing the sampleBufferDelegate.</param>
 
343
        <summary>Sets the target object where the captured frames will be sent to.</summary>
 
344
        <remarks>To be added.</remarks>
 
345
      </Docs>
 
346
    </Member>
 
347
    <Member MemberName="SetSampleBufferDelegateAndQueue">
 
348
      <MemberSignature Language="C#" Value="public void SetSampleBufferDelegateAndQueue (MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate sampleBufferDelegate, MonoMac.CoreFoundation.DispatchQueue queue);" />
 
349
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void SetSampleBufferDelegateAndQueue(class MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate sampleBufferDelegate, class MonoMac.CoreFoundation.DispatchQueue queue) cil managed" />
 
350
      <MemberType>Method</MemberType>
 
351
      <AssemblyInfo>
 
352
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
353
      </AssemblyInfo>
 
354
      <ReturnValue>
 
355
        <ReturnType>System.Void</ReturnType>
 
356
      </ReturnValue>
 
357
      <Parameters>
 
358
        <Parameter Name="sampleBufferDelegate" Type="MonoMac.AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate" />
 
359
        <Parameter Name="queue" Type="MonoMac.CoreFoundation.DispatchQueue" />
 
360
      </Parameters>
 
361
      <Docs>
 
362
        <param name="sampleBufferDelegate">To be added.</param>
 
363
        <param name="queue">To be added.</param>
 
364
        <summary>To be added.</summary>
 
365
        <remarks>To be added.</remarks>
 
366
      </Docs>
 
367
    </Member>
 
368
    <Member MemberName="UncompressedVideoSetting">
 
369
      <MemberSignature Language="C#" Value="public MonoMac.AVFoundation.AVVideoSettingsUncompressed UncompressedVideoSetting { get; set; }" />
 
370
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVVideoSettingsUncompressed UncompressedVideoSetting" />
 
371
      <MemberType>Property</MemberType>
 
372
      <AssemblyInfo>
 
373
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
374
      </AssemblyInfo>
 
375
      <ReturnValue>
 
376
        <ReturnType>MonoMac.AVFoundation.AVVideoSettingsUncompressed</ReturnType>
 
377
      </ReturnValue>
 
378
      <Docs>
 
379
        <summary>To be added.</summary>
 
380
        <value>To be added.</value>
 
381
        <remarks>To be added.</remarks>
 
382
      </Docs>
 
383
    </Member>
 
384
    <Member MemberName="VideoSettings">
 
385
      <MemberSignature Language="C#" Value="public MonoMac.AVFoundation.AVVideoSettings VideoSettings { get; set; }" />
 
386
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVVideoSettings VideoSettings" />
 
387
      <MemberType>Property</MemberType>
 
388
      <AssemblyInfo>
 
389
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
390
      </AssemblyInfo>
 
391
      <Attributes>
 
392
        <Attribute>
 
393
          <AttributeName>System.Obsolete("Use Compressed or Uncompressed property")</AttributeName>
 
394
        </Attribute>
 
395
      </Attributes>
 
396
      <ReturnValue>
 
397
        <ReturnType>MonoMac.AVFoundation.AVVideoSettings</ReturnType>
 
398
      </ReturnValue>
 
399
      <Docs>
 
400
        <summary>Video settings.</summary>
 
401
        <value>To be added.</value>
 
402
        <remarks>To be added.</remarks>
 
403
      </Docs>
 
404
    </Member>
 
405
    <Member MemberName="WeakVideoSettings">
 
406
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSDictionary WeakVideoSettings { get; set; }" />
 
407
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSDictionary WeakVideoSettings" />
 
408
      <MemberType>Property</MemberType>
 
409
      <AssemblyInfo>
 
410
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
411
      </AssemblyInfo>
 
412
      <Attributes>
 
413
        <Attribute>
 
414
          <AttributeName>get: MonoMac.Foundation.Export("videoSettings", MonoMac.ObjCRuntime.ArgumentSemantic.Copy)</AttributeName>
 
415
        </Attribute>
 
416
        <Attribute>
 
417
          <AttributeName>set: MonoMac.Foundation.Export("setVideoSettings:", MonoMac.ObjCRuntime.ArgumentSemantic.Copy)</AttributeName>
 
418
        </Attribute>
 
419
      </Attributes>
 
420
      <ReturnValue>
 
421
        <ReturnType>MonoMac.Foundation.NSDictionary</ReturnType>
 
422
      </ReturnValue>
 
423
      <Docs>
 
424
        <summary>To be added.</summary>
 
425
        <value>
 
426
          <para>(More documentation for this node is coming)</para>
 
427
          <para tool="nullallowed">This value can be <see langword="null" />.</para>
 
428
        </value>
 
429
        <remarks>To be added.</remarks>
 
430
      </Docs>
 
431
    </Member>
 
432
  </Members>
 
433
</Type>