~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.Foundation/NSDirectoryEnumerator.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (1.8.5) (1.5.8 sid)
  • Revision ID: package-import@ubuntu.com-20120527180820-f1ub6lhg0s50wci1
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Type Name="NSDirectoryEnumerator" FullName="MonoMac.Foundation.NSDirectoryEnumerator">
 
2
  <TypeSignature Language="C#" Value="public class NSDirectoryEnumerator : MonoMac.Foundation.NSEnumerator" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit NSDirectoryEnumerator extends MonoMac.Foundation.NSEnumerator" />
 
4
  <AssemblyInfo>
 
5
    <AssemblyName>MonoMac</AssemblyName>
 
6
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
7
  </AssemblyInfo>
 
8
  <Base>
 
9
    <BaseTypeName>MonoMac.Foundation.NSEnumerator</BaseTypeName>
 
10
  </Base>
 
11
  <Interfaces />
 
12
  <Attributes>
 
13
    <Attribute>
 
14
      <AttributeName>MonoMac.Foundation.Register("NSDirectoryEnumerator", true)</AttributeName>
 
15
    </Attribute>
 
16
  </Attributes>
 
17
  <Docs>
 
18
    <summary>To be added.</summary>
 
19
    <remarks>To be added.</remarks>
 
20
  </Docs>
 
21
  <Members>
 
22
    <Member MemberName=".ctor">
 
23
      <MemberSignature Language="C#" Value="public NSDirectoryEnumerator ();" />
 
24
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
 
25
      <MemberType>Constructor</MemberType>
 
26
      <AssemblyInfo>
 
27
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
28
      </AssemblyInfo>
 
29
      <Attributes>
 
30
        <Attribute>
 
31
          <AttributeName>MonoMac.Foundation.Export("init")</AttributeName>
 
32
        </Attribute>
 
33
      </Attributes>
 
34
      <Parameters />
 
35
      <Docs>
 
36
        <summary>Default constructor that initializes a new instance of this class with no parameters.</summary>
 
37
        <remarks>
 
38
        </remarks>
 
39
      </Docs>
 
40
    </Member>
 
41
    <Member MemberName=".ctor">
 
42
      <MemberSignature Language="C#" Value="public NSDirectoryEnumerator (MonoMac.Foundation.NSCoder coder);" />
 
43
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSCoder coder) cil managed" />
 
44
      <MemberType>Constructor</MemberType>
 
45
      <AssemblyInfo>
 
46
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
47
      </AssemblyInfo>
 
48
      <Attributes>
 
49
        <Attribute>
 
50
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
 
51
        </Attribute>
 
52
      </Attributes>
 
53
      <Parameters>
 
54
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
 
55
      </Parameters>
 
56
      <Docs>
 
57
        <param name="coder">The unarchiver object.</param>
 
58
        <summary>A constructor that initializes the object from the data stored in the unarchiver object.</summary>
 
59
        <remarks>This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization).</remarks>
 
60
      </Docs>
 
61
    </Member>
 
62
    <Member MemberName=".ctor">
 
63
      <MemberSignature Language="C#" Value="public NSDirectoryEnumerator (MonoMac.Foundation.NSObjectFlag t);" />
 
64
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSObjectFlag t) cil managed" />
 
65
      <MemberType>Constructor</MemberType>
 
66
      <AssemblyInfo>
 
67
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
68
      </AssemblyInfo>
 
69
      <Parameters>
 
70
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
 
71
      </Parameters>
 
72
      <Docs>
 
73
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
 
74
        <summary>Constructor to call on derived classes to skip initialization and merely allocate the object.</summary>
 
75
        <remarks>
 
76
          <para>This constructor should be called by derived classes when they completely construct the object in managed code and merely want the runtime to allocate and initialize the NSObject.   This is required to implement the two-step initialization process that Objective-C uses, the first step is to perform the object allocation, the second step is to initialize the object.   When you invoke the constructor that takes the NSObjectFlag.Empty you taking advatnage of a direct path that goes all the way up to NSObject to merely allocate the object's memory and bind the Objective-C and C# objects together.    The actual initialization of the object is up to you.</para>
 
77
          <para>This constructor is typically used by the binding generator to allocate the object, but prevent the actual initialization to take place.   Once the allocation has taken place, the constructor has to initialize the object.   With constructors generated by the binding generator this means that it manually invokes one of the "init" methods to initialize the object.</para>
 
78
          <para>It is your responsability to completely initialize the object if you chain up using the NSObjectFlag.Empty path.</para>
 
79
          <para>In general, if your constructors invokes the NSObjectFlag.Empty base implementation, then it should be calling an Objective-C init method.   If this is not the case, you should instead chain to the proper constructor in your class. </para>
 
80
          <para>The argument value is ignored and merely ensures that the only code that is executed is the construction phase is the basic NSObject allocation and runtime type registration.  Typically the chaining would look like this:</para>
 
81
          <example>
 
82
            <code lang="C#">
 
83
//
 
84
// The NSObjectFlag merely allocates the object and registers the
 
85
// C# class with the Objective-C runtime if necessary, but no actual
 
86
// initXxx method is invoked, that is done later in the constructor
 
87
//
 
88
// This is taken from MonoMac's source code:
 
89
//
 
90
[Export ("initWithFrame:")]
 
91
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
 
92
{
 
93
// Invoke the init method now.
 
94
        var initWithFrame = new Selector ("initWithFrame:").Handle;
 
95
        if (IsDirectBinding)
 
96
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSend_RectangleF (this.Handle, initWithFrame, frame);
 
97
        else
 
98
                Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_RectangleF (this.SuperHandle, initWithFrame, frame);
 
99
}
 
100
</code>
 
101
          </example>
 
102
        </remarks>
 
103
      </Docs>
 
104
    </Member>
 
105
    <Member MemberName=".ctor">
 
106
      <MemberSignature Language="C#" Value="public NSDirectoryEnumerator (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
      <Parameters>
 
113
        <Parameter Name="handle" Type="System.IntPtr" />
 
114
      </Parameters>
 
115
      <Docs>
 
116
        <param name="handle">Pointer (handle) to the unmanaged object.</param>
 
117
        <summary>A constructor used when creating managed representations of unmanaged objects;  Called by the runtime.</summary>
 
118
        <remarks>
 
119
          <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>
 
120
        </remarks>
 
121
      </Docs>
 
122
    </Member>
 
123
    <Member MemberName="ClassHandle">
 
124
      <MemberSignature Language="C#" Value="public override IntPtr ClassHandle { get; }" />
 
125
      <MemberSignature Language="ILAsm" Value=".property instance native int ClassHandle" />
 
126
      <MemberType>Property</MemberType>
 
127
      <AssemblyInfo>
 
128
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
129
      </AssemblyInfo>
 
130
      <ReturnValue>
 
131
        <ReturnType>System.IntPtr</ReturnType>
 
132
      </ReturnValue>
 
133
      <Docs>
 
134
        <summary>The handle for this class.</summary>
 
135
        <value>The pointer to the Objective-C class.</value>
 
136
        <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>
 
137
      </Docs>
 
138
    </Member>
 
139
    <Member MemberName="DirectoryAttributes">
 
140
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSDictionary DirectoryAttributes { get; }" />
 
141
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSDictionary DirectoryAttributes" />
 
142
      <MemberType>Property</MemberType>
 
143
      <AssemblyInfo>
 
144
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
145
      </AssemblyInfo>
 
146
      <Attributes>
 
147
        <Attribute>
 
148
          <AttributeName>get: MonoMac.Foundation.Export("directoryAttributes")</AttributeName>
 
149
        </Attribute>
 
150
      </Attributes>
 
151
      <ReturnValue>
 
152
        <ReturnType>MonoMac.Foundation.NSDictionary</ReturnType>
 
153
      </ReturnValue>
 
154
      <Docs>
 
155
        <summary>To be added.</summary>
 
156
        <value>To be added.</value>
 
157
        <remarks>To be added.</remarks>
 
158
      </Docs>
 
159
    </Member>
 
160
    <Member MemberName="Dispose">
 
161
      <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
 
162
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Dispose(bool disposing) cil managed" />
 
163
      <MemberType>Method</MemberType>
 
164
      <AssemblyInfo>
 
165
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
166
      </AssemblyInfo>
 
167
      <ReturnValue>
 
168
        <ReturnType>System.Void</ReturnType>
 
169
      </ReturnValue>
 
170
      <Parameters>
 
171
        <Parameter Name="disposing" Type="System.Boolean" />
 
172
      </Parameters>
 
173
      <Docs>
 
174
        <param name="disposing">
 
175
          <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>
 
176
        </param>
 
177
        <summary>Releases the resourced used by the NSDirectoryEnumerator object.</summary>
 
178
        <remarks>
 
179
          <para>This Dispose method releases the resources used by the NSDirectoryEnumerator class.</para>
 
180
          <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>
 
181
          <para>Calling the Dispose method when you are finished using the NSDirectoryEnumerator 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>
 
182
          <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>
 
183
        </remarks>
 
184
      </Docs>
 
185
    </Member>
 
186
    <Member MemberName="FileAttributes">
 
187
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSDictionary FileAttributes { get; }" />
 
188
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSDictionary FileAttributes" />
 
189
      <MemberType>Property</MemberType>
 
190
      <AssemblyInfo>
 
191
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
192
      </AssemblyInfo>
 
193
      <Attributes>
 
194
        <Attribute>
 
195
          <AttributeName>get: MonoMac.Foundation.Export("fileAttributes")</AttributeName>
 
196
        </Attribute>
 
197
      </Attributes>
 
198
      <ReturnValue>
 
199
        <ReturnType>MonoMac.Foundation.NSDictionary</ReturnType>
 
200
      </ReturnValue>
 
201
      <Docs>
 
202
        <summary>To be added.</summary>
 
203
        <value>To be added.</value>
 
204
        <remarks>To be added.</remarks>
 
205
      </Docs>
 
206
    </Member>
 
207
    <Member MemberName="FileCreationDate">
 
208
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSDate FileCreationDate (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
209
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.Foundation.NSDate FileCreationDate(class MonoMac.Foundation.NSDictionary fileAttributes) 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("fileCreationDate")</AttributeName>
 
217
        </Attribute>
 
218
      </Attributes>
 
219
      <ReturnValue>
 
220
        <ReturnType>MonoMac.Foundation.NSDate</ReturnType>
 
221
      </ReturnValue>
 
222
      <Parameters>
 
223
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
224
      </Parameters>
 
225
      <Docs>
 
226
        <param name="fileAttributes">To be added.</param>
 
227
        <summary>To be added.</summary>
 
228
        <returns>To be added.</returns>
 
229
        <remarks>To be added.</remarks>
 
230
      </Docs>
 
231
    </Member>
 
232
    <Member MemberName="FileExtensionHidden">
 
233
      <MemberSignature Language="C#" Value="public virtual bool FileExtensionHidden (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
234
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool FileExtensionHidden(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
235
      <MemberType>Method</MemberType>
 
236
      <AssemblyInfo>
 
237
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
238
      </AssemblyInfo>
 
239
      <Attributes>
 
240
        <Attribute>
 
241
          <AttributeName>MonoMac.Foundation.Export("fileExtensionHidden")</AttributeName>
 
242
        </Attribute>
 
243
      </Attributes>
 
244
      <ReturnValue>
 
245
        <ReturnType>System.Boolean</ReturnType>
 
246
      </ReturnValue>
 
247
      <Parameters>
 
248
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
249
      </Parameters>
 
250
      <Docs>
 
251
        <param name="fileAttributes">To be added.</param>
 
252
        <summary>To be added.</summary>
 
253
        <returns>To be added.</returns>
 
254
        <remarks>To be added.</remarks>
 
255
      </Docs>
 
256
    </Member>
 
257
    <Member MemberName="FileGroupOwnerAccountID">
 
258
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSNumber FileGroupOwnerAccountID (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
259
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.Foundation.NSNumber FileGroupOwnerAccountID(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
260
      <MemberType>Method</MemberType>
 
261
      <AssemblyInfo>
 
262
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
263
      </AssemblyInfo>
 
264
      <Attributes>
 
265
        <Attribute>
 
266
          <AttributeName>MonoMac.Foundation.Export("fileGroupOwnerAccountID")</AttributeName>
 
267
        </Attribute>
 
268
      </Attributes>
 
269
      <ReturnValue>
 
270
        <ReturnType>MonoMac.Foundation.NSNumber</ReturnType>
 
271
      </ReturnValue>
 
272
      <Parameters>
 
273
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
274
      </Parameters>
 
275
      <Docs>
 
276
        <param name="fileAttributes">To be added.</param>
 
277
        <summary>To be added.</summary>
 
278
        <returns>To be added.</returns>
 
279
        <remarks>To be added.</remarks>
 
280
      </Docs>
 
281
    </Member>
 
282
    <Member MemberName="FileGroupOwnerAccountName">
 
283
      <MemberSignature Language="C#" Value="public virtual string FileGroupOwnerAccountName (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
284
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string FileGroupOwnerAccountName(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
285
      <MemberType>Method</MemberType>
 
286
      <AssemblyInfo>
 
287
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
288
      </AssemblyInfo>
 
289
      <Attributes>
 
290
        <Attribute>
 
291
          <AttributeName>MonoMac.Foundation.Export("fileGroupOwnerAccountName")</AttributeName>
 
292
        </Attribute>
 
293
      </Attributes>
 
294
      <ReturnValue>
 
295
        <ReturnType>System.String</ReturnType>
 
296
      </ReturnValue>
 
297
      <Parameters>
 
298
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
299
      </Parameters>
 
300
      <Docs>
 
301
        <param name="fileAttributes">To be added.</param>
 
302
        <summary>To be added.</summary>
 
303
        <returns>To be added.</returns>
 
304
        <remarks>To be added.</remarks>
 
305
      </Docs>
 
306
    </Member>
 
307
    <Member MemberName="FileHfsCreatorCode">
 
308
      <MemberSignature Language="C#" Value="public virtual uint FileHfsCreatorCode (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
309
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int32 FileHfsCreatorCode(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
310
      <MemberType>Method</MemberType>
 
311
      <AssemblyInfo>
 
312
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
313
      </AssemblyInfo>
 
314
      <Attributes>
 
315
        <Attribute>
 
316
          <AttributeName>MonoMac.Foundation.Export("fileHFSCreatorCode")</AttributeName>
 
317
        </Attribute>
 
318
      </Attributes>
 
319
      <ReturnValue>
 
320
        <ReturnType>System.UInt32</ReturnType>
 
321
      </ReturnValue>
 
322
      <Parameters>
 
323
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
324
      </Parameters>
 
325
      <Docs>
 
326
        <param name="fileAttributes">To be added.</param>
 
327
        <summary>To be added.</summary>
 
328
        <returns>To be added.</returns>
 
329
        <remarks>To be added.</remarks>
 
330
      </Docs>
 
331
    </Member>
 
332
    <Member MemberName="FileHfsTypeCode">
 
333
      <MemberSignature Language="C#" Value="public virtual uint FileHfsTypeCode (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
334
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int32 FileHfsTypeCode(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
335
      <MemberType>Method</MemberType>
 
336
      <AssemblyInfo>
 
337
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
338
      </AssemblyInfo>
 
339
      <Attributes>
 
340
        <Attribute>
 
341
          <AttributeName>MonoMac.Foundation.Export("fileHFSTypeCode")</AttributeName>
 
342
        </Attribute>
 
343
      </Attributes>
 
344
      <ReturnValue>
 
345
        <ReturnType>System.UInt32</ReturnType>
 
346
      </ReturnValue>
 
347
      <Parameters>
 
348
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
349
      </Parameters>
 
350
      <Docs>
 
351
        <param name="fileAttributes">To be added.</param>
 
352
        <summary>To be added.</summary>
 
353
        <returns>To be added.</returns>
 
354
        <remarks>To be added.</remarks>
 
355
      </Docs>
 
356
    </Member>
 
357
    <Member MemberName="FileIsAppendOnly">
 
358
      <MemberSignature Language="C#" Value="public virtual bool FileIsAppendOnly (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
359
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool FileIsAppendOnly(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
360
      <MemberType>Method</MemberType>
 
361
      <AssemblyInfo>
 
362
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
363
      </AssemblyInfo>
 
364
      <Attributes>
 
365
        <Attribute>
 
366
          <AttributeName>MonoMac.Foundation.Export("fileIsAppendOnly")</AttributeName>
 
367
        </Attribute>
 
368
      </Attributes>
 
369
      <ReturnValue>
 
370
        <ReturnType>System.Boolean</ReturnType>
 
371
      </ReturnValue>
 
372
      <Parameters>
 
373
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
374
      </Parameters>
 
375
      <Docs>
 
376
        <param name="fileAttributes">To be added.</param>
 
377
        <summary>To be added.</summary>
 
378
        <returns>To be added.</returns>
 
379
        <remarks>To be added.</remarks>
 
380
      </Docs>
 
381
    </Member>
 
382
    <Member MemberName="FileIsImmutable">
 
383
      <MemberSignature Language="C#" Value="public virtual bool FileIsImmutable (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
384
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool FileIsImmutable(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
385
      <MemberType>Method</MemberType>
 
386
      <AssemblyInfo>
 
387
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
388
      </AssemblyInfo>
 
389
      <Attributes>
 
390
        <Attribute>
 
391
          <AttributeName>MonoMac.Foundation.Export("fileIsImmutable")</AttributeName>
 
392
        </Attribute>
 
393
      </Attributes>
 
394
      <ReturnValue>
 
395
        <ReturnType>System.Boolean</ReturnType>
 
396
      </ReturnValue>
 
397
      <Parameters>
 
398
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
399
      </Parameters>
 
400
      <Docs>
 
401
        <param name="fileAttributes">To be added.</param>
 
402
        <summary>To be added.</summary>
 
403
        <returns>To be added.</returns>
 
404
        <remarks>To be added.</remarks>
 
405
      </Docs>
 
406
    </Member>
 
407
    <Member MemberName="FileModificationDate">
 
408
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSDate FileModificationDate (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
409
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.Foundation.NSDate FileModificationDate(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
410
      <MemberType>Method</MemberType>
 
411
      <AssemblyInfo>
 
412
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
413
      </AssemblyInfo>
 
414
      <Attributes>
 
415
        <Attribute>
 
416
          <AttributeName>MonoMac.Foundation.Export("fileModificationDate")</AttributeName>
 
417
        </Attribute>
 
418
      </Attributes>
 
419
      <ReturnValue>
 
420
        <ReturnType>MonoMac.Foundation.NSDate</ReturnType>
 
421
      </ReturnValue>
 
422
      <Parameters>
 
423
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
424
      </Parameters>
 
425
      <Docs>
 
426
        <param name="fileAttributes">To be added.</param>
 
427
        <summary>To be added.</summary>
 
428
        <returns>To be added.</returns>
 
429
        <remarks>To be added.</remarks>
 
430
      </Docs>
 
431
    </Member>
 
432
    <Member MemberName="FileOwnerAccountID">
 
433
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSNumber FileOwnerAccountID (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
434
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.Foundation.NSNumber FileOwnerAccountID(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
435
      <MemberType>Method</MemberType>
 
436
      <AssemblyInfo>
 
437
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
438
      </AssemblyInfo>
 
439
      <Attributes>
 
440
        <Attribute>
 
441
          <AttributeName>MonoMac.Foundation.Export("fileOwnerAccountID")</AttributeName>
 
442
        </Attribute>
 
443
      </Attributes>
 
444
      <ReturnValue>
 
445
        <ReturnType>MonoMac.Foundation.NSNumber</ReturnType>
 
446
      </ReturnValue>
 
447
      <Parameters>
 
448
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
449
      </Parameters>
 
450
      <Docs>
 
451
        <param name="fileAttributes">To be added.</param>
 
452
        <summary>To be added.</summary>
 
453
        <returns>To be added.</returns>
 
454
        <remarks>To be added.</remarks>
 
455
      </Docs>
 
456
    </Member>
 
457
    <Member MemberName="FileOwnerAccountName">
 
458
      <MemberSignature Language="C#" Value="public virtual string FileOwnerAccountName (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
459
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string FileOwnerAccountName(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
460
      <MemberType>Method</MemberType>
 
461
      <AssemblyInfo>
 
462
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
463
      </AssemblyInfo>
 
464
      <Attributes>
 
465
        <Attribute>
 
466
          <AttributeName>MonoMac.Foundation.Export("fileOwnerAccountName")</AttributeName>
 
467
        </Attribute>
 
468
      </Attributes>
 
469
      <ReturnValue>
 
470
        <ReturnType>System.String</ReturnType>
 
471
      </ReturnValue>
 
472
      <Parameters>
 
473
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
474
      </Parameters>
 
475
      <Docs>
 
476
        <param name="fileAttributes">To be added.</param>
 
477
        <summary>To be added.</summary>
 
478
        <returns>To be added.</returns>
 
479
        <remarks>To be added.</remarks>
 
480
      </Docs>
 
481
    </Member>
 
482
    <Member MemberName="FilePosixPermissions">
 
483
      <MemberSignature Language="C#" Value="public virtual uint FilePosixPermissions (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
484
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int32 FilePosixPermissions(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
485
      <MemberType>Method</MemberType>
 
486
      <AssemblyInfo>
 
487
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
488
      </AssemblyInfo>
 
489
      <Attributes>
 
490
        <Attribute>
 
491
          <AttributeName>MonoMac.Foundation.Export("filePosixPermissions")</AttributeName>
 
492
        </Attribute>
 
493
      </Attributes>
 
494
      <ReturnValue>
 
495
        <ReturnType>System.UInt32</ReturnType>
 
496
      </ReturnValue>
 
497
      <Parameters>
 
498
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
499
      </Parameters>
 
500
      <Docs>
 
501
        <param name="fileAttributes">To be added.</param>
 
502
        <summary>To be added.</summary>
 
503
        <returns>To be added.</returns>
 
504
        <remarks>To be added.</remarks>
 
505
      </Docs>
 
506
    </Member>
 
507
    <Member MemberName="FileSystemFileNumber">
 
508
      <MemberSignature Language="C#" Value="public virtual uint FileSystemFileNumber (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
509
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int32 FileSystemFileNumber(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
510
      <MemberType>Method</MemberType>
 
511
      <AssemblyInfo>
 
512
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
513
      </AssemblyInfo>
 
514
      <Attributes>
 
515
        <Attribute>
 
516
          <AttributeName>MonoMac.Foundation.Export("fileSystemFileNumber")</AttributeName>
 
517
        </Attribute>
 
518
      </Attributes>
 
519
      <ReturnValue>
 
520
        <ReturnType>System.UInt32</ReturnType>
 
521
      </ReturnValue>
 
522
      <Parameters>
 
523
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
524
      </Parameters>
 
525
      <Docs>
 
526
        <param name="fileAttributes">To be added.</param>
 
527
        <summary>To be added.</summary>
 
528
        <returns>To be added.</returns>
 
529
        <remarks>To be added.</remarks>
 
530
      </Docs>
 
531
    </Member>
 
532
    <Member MemberName="FileSystemNumber">
 
533
      <MemberSignature Language="C#" Value="public virtual int FileSystemNumber (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
534
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 FileSystemNumber(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
535
      <MemberType>Method</MemberType>
 
536
      <AssemblyInfo>
 
537
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
538
      </AssemblyInfo>
 
539
      <Attributes>
 
540
        <Attribute>
 
541
          <AttributeName>MonoMac.Foundation.Export("fileSystemNumber")</AttributeName>
 
542
        </Attribute>
 
543
      </Attributes>
 
544
      <ReturnValue>
 
545
        <ReturnType>System.Int32</ReturnType>
 
546
      </ReturnValue>
 
547
      <Parameters>
 
548
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
549
      </Parameters>
 
550
      <Docs>
 
551
        <param name="fileAttributes">To be added.</param>
 
552
        <summary>To be added.</summary>
 
553
        <returns>To be added.</returns>
 
554
        <remarks>To be added.</remarks>
 
555
      </Docs>
 
556
    </Member>
 
557
    <Member MemberName="FileType">
 
558
      <MemberSignature Language="C#" Value="public virtual string FileType (MonoMac.Foundation.NSDictionary fileAttributes);" />
 
559
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string FileType(class MonoMac.Foundation.NSDictionary fileAttributes) cil managed" />
 
560
      <MemberType>Method</MemberType>
 
561
      <AssemblyInfo>
 
562
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
563
      </AssemblyInfo>
 
564
      <Attributes>
 
565
        <Attribute>
 
566
          <AttributeName>MonoMac.Foundation.Export("fileType")</AttributeName>
 
567
        </Attribute>
 
568
      </Attributes>
 
569
      <ReturnValue>
 
570
        <ReturnType>System.String</ReturnType>
 
571
      </ReturnValue>
 
572
      <Parameters>
 
573
        <Parameter Name="fileAttributes" Type="MonoMac.Foundation.NSDictionary" />
 
574
      </Parameters>
 
575
      <Docs>
 
576
        <param name="fileAttributes">To be added.</param>
 
577
        <summary>To be added.</summary>
 
578
        <returns>To be added.</returns>
 
579
        <remarks>To be added.</remarks>
 
580
      </Docs>
 
581
    </Member>
 
582
    <Member MemberName="SkipDescendents">
 
583
      <MemberSignature Language="C#" Value="public virtual void SkipDescendents ();" />
 
584
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SkipDescendents() cil managed" />
 
585
      <MemberType>Method</MemberType>
 
586
      <AssemblyInfo>
 
587
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
588
      </AssemblyInfo>
 
589
      <Attributes>
 
590
        <Attribute>
 
591
          <AttributeName>MonoMac.Foundation.Export("skipDescendents")</AttributeName>
 
592
        </Attribute>
 
593
      </Attributes>
 
594
      <ReturnValue>
 
595
        <ReturnType>System.Void</ReturnType>
 
596
      </ReturnValue>
 
597
      <Parameters />
 
598
      <Docs>
 
599
        <summary>To be added.</summary>
 
600
        <remarks>To be added.</remarks>
 
601
      </Docs>
 
602
    </Member>
 
603
  </Members>
 
604
</Type>