File: CacheDependency.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (479 lines) | stat: -rw-r--r-- 37,049 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
<?xml version="1.0" encoding="utf-8"?>
<Type Name="CacheDependency" FullName="System.Web.Caching.CacheDependency">
  <TypeSignature Language="C#" Maintainer="auto" Value="public class CacheDependency : IDisposable" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyPublicKey>
    </AssemblyPublicKey>
    <AssemblyVersion>1.0.5000.0</AssemblyVersion>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces>
    <Interface>
      <InterfaceName>System.IDisposable</InterfaceName>
    </Interface>
  </Interfaces>
  <Docs>
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>If you add an item to the cache that is dependent on another object, such as a file or array of files, the dependent item is automatically removed from the cache when the object changes. For example, suppose you create a <see cref="T:System.Data.DataSet" /> object based on data in an XML file. You can add the <see cref="T:System.Data.DataSet" /> to the cache with a <see cref="T:System.Web.Caching.CacheDependency" /> object that makes the <see cref="T:System.Data.DataSet" /> dependent on the XML file. If the XML file changes, the <see cref="T:System.Data.DataSet" /> is removed from the cache.</para>
      <para>You can add items with dependencies to your application's cache with the <see cref="M:System.Web.Caching.Cache.Add(System.String,System.Object,System.Web.Caching.CacheDependency,System.DateTime,System.TimeSpan,System.Web.Caching.CacheItemPriority,System.Web.Caching.CacheItemRemovedCallback)" /> and <see cref="Overload:System.Web.Caching.Cache.Insert" /> methods. You cannot use the <see cref="P:System.Web.Caching.Cache.Item(System.String)" /> property to add items to the cache with dependencies.</para>
      <para>To set up a dependency, you create an instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class, specifying the files, keys, or directories on which the item is dependent, and then pass the dependency to the <see cref="M:System.Web.Caching.Cache.Add(System.String,System.Object,System.Web.Caching.CacheDependency,System.DateTime,System.TimeSpan,System.Web.Caching.CacheItemPriority,System.Web.Caching.CacheItemRemovedCallback)" /> or <see cref="Overload:System.Web.Caching.Cache.Insert" /> method. The <see cref="T:System.Web.Caching.CacheDependency" /> instance can represent a single file or directory, an array of files or directories, or an array of files or directories along with an array of cache keys (these represent other items stored in the <see cref="T:System.Web.Caching.Cache" /> object).</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Establishes a dependency relationship between an item stored in an ASP.NET application's <see cref="T:System.Web.Caching.Cache" /> object and a file, cache key, an array of either, or another <see cref="T:System.Web.Caching.CacheDependency" /> object. The <see cref="T:System.Web.Caching.CacheDependency" /> class monitors the dependency relationships so that when any of them changes, the cached item will be automatically removed.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency ();" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <Parameters />
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If you want to derive your own class from <see cref="T:System.Web.Caching.CacheDependency" />, implement this version of the <see cref="M:System.Web.Caching.CacheDependency.#ctor" /> constructor.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string filename);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filename" Type="System.String" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If the directory or file specified in the <paramref name="filename" /> parameter is not found in the file system, it will be treated as missing. If the directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when the directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors a file or directory for changes.</para>
        </summary>
        <param name="filename">
          <attribution license="cc4" from="Microsoft" modified="false" />The path to a file or directory that the cached object is dependent upon. When this resource changes, the cached object becomes obsolete and is removed from the cache. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string[] filenames);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filenames" Type="System.String[]" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If any of the files or directories in the array changes or is removed from the array, the cached item becomes obsolete and is removed from the application's <see cref="T:System.Web.Caching.Cache" /> object.</para>
          <para>Also, if any of the directories or files specified in the <paramref name="filenames" /> parameter is not found in the file system, it is treated as missing. If a directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when that directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
          <block subset="none" type="note">
            <para>When you create the array that contains the file dependencies, you must define the number of files that the item you are adding to the <see cref="T:System.Web.Caching.Cache" /> is dependent on.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of paths (to files or directories) for changes.</para>
        </summary>
        <param name="filenames">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of paths (to files or directories) that the cached object is dependent upon. When any of these resources changes, the cached object becomes obsolete and is removed from the cache. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string filename, DateTime start);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filename" Type="System.String" />
        <Parameter Name="start" Type="System.DateTime" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If the directory or file specified in the <paramref name="filename" /> parameter is not found in the file system, it will be treated as missing. If the directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when the directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
          <block subset="none" type="note">
            <para>Change tracking begins immediately and is not directly based on the <paramref name="start" /> parameter. Use the <paramref name="start" /> parameter to pass a date and time in the past against which you want to check the last modified date of the directory or file passed in the <paramref name="filename" /> parameter. If the last modified date is later than the date and time set passed in the <paramref name="start" /> parameter, the cached item is removed from the <see cref="T:System.Web.Caching.Cache" />.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors a file or directory for changes.</para>
        </summary>
        <param name="filename">
          <attribution license="cc4" from="Microsoft" modified="false" />The path to a file or directory that the cached object is dependent upon. When this resource changes, the cached object becomes obsolete and is removed from the cache. </param>
        <param name="start">
          <attribution license="cc4" from="Microsoft" modified="false" />The time against which to check the last modified date of the directory or file. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string[] filenames, DateTime start);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filenames" Type="System.String[]" />
        <Parameter Name="start" Type="System.DateTime" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If any of the directories or files specified in the <paramref name="filenames" /> parameter is not found in the file system, it is treated as missing. If a directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when that directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
          <block subset="none" type="note">
            <para>Change tracking begins immediately and is not directly based on the <paramref name="start" /> parameter. Use the <paramref name="start" /> parameter to pass a date and time in the past against which you want to check the last modified date of the array passed in the <paramref name="filenames" /> parameter. If the last modified date of any object in the array is later than the date and time set passed in the <paramref name="start" /> parameter, the cached item is removed from the <see cref="T:System.Web.Caching.Cache" />.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of paths (to files or directories) for changes and specifies a time when change monitoring begins.</para>
        </summary>
        <param name="filenames">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of paths (to files or directories) that the cached object is dependent upon. When any of these resources changes, the cached object becomes obsolete and is removed from the cache. </param>
        <param name="start">
          <attribution license="cc4" from="Microsoft" modified="false" />The time against which to check the last modified date of the objects in the array. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string[] filenames, string[] cachekeys);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filenames" Type="System.String[]" />
        <Parameter Name="cachekeys" Type="System.String[]" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Also, if any of the directories or files specified in the <paramref name="filenames" /> parameter is not found in the file system, it is treated as missing. If a directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when that directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of paths (to files or directories), an array of cache keys, or both for changes.</para>
        </summary>
        <param name="filenames">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of paths (to files or directories) that the cached object is dependent upon. When any of these resources changes, the cached object becomes obsolete and is removed from the cache. </param>
        <param name="cachekeys">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of cache keys that the new object monitors for changes. When any of these cache keys changes, the cached object associated with this dependency object becomes obsolete and is removed from the cache. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string[] filenames, string[] cachekeys, DateTime start);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filenames" Type="System.String[]" />
        <Parameter Name="cachekeys" Type="System.String[]" />
        <Parameter Name="start" Type="System.DateTime" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Also, if any of the directories or files specified in the <paramref name="filenames" /> parameter is not found in the file system, it is treated as missing. If a directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when that directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
          <block subset="none" type="note">
            <para>Change tracking begins immediately and is not directly based on the <paramref name="start" /> parameter. Use the <paramref name="start" /> parameter to pass a date and time in the past against which you want to check the last modified date of any object passed in the <paramref name="filenames" /> or <paramref name="cachekeys" /> parameters. If the last modified date of any of those objects is later than the date and time set passed in the <paramref name="start" /> parameter, the cached item is removed from the <see cref="T:System.Web.Caching.Cache" />.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of paths (to files or directories), an array of cache keys, or both for changes.</para>
        </summary>
        <param name="filenames">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of paths (to files or directories) that the cached object is dependent upon. When any of these resources changes, the cached object becomes obsolete and is removed from the cache. </param>
        <param name="cachekeys">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of cache keys that the new object monitors for changes. When any of these cache keys changes, the cached object associated with this dependency object becomes obsolete and is removed from the cache. </param>
        <param name="start">
          <attribution license="cc4" from="Microsoft" modified="false" />The date and time against which to check the last modified date of the objects passed in the <paramref name="filenames" /> and <paramref name="cachekeys" /> arrays. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string[] filenames, string[] cachekeys, System.Web.Caching.CacheDependency dependency);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filenames" Type="System.String[]" />
        <Parameter Name="cachekeys" Type="System.String[]" />
        <Parameter Name="dependency" Type="System.Web.Caching.CacheDependency" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Also, if any of the directories or files specified in the <paramref name="filenames" /> parameter is not found in the file system, it is treated as missing. If a directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when that directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of paths (to files or directories), an array of cache keys, or both for changes. It also makes itself dependent upon a separate instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class.</para>
        </summary>
        <param name="filenames">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of paths (to files or directories) that the cached object is dependent upon. When any of these resources changes, the cached object becomes obsolete and is removed from the cache. </param>
        <param name="cachekeys">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of cache keys that the new object monitors for changes. When any of these cache keys changes, the cached object associated with this dependency object becomes obsolete and is removed from the cache. </param>
        <param name="dependency">
          <attribution license="cc4" from="Microsoft" modified="false" />Another instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that this instance is dependent upon. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public CacheDependency (string[] filenames, string[] cachekeys, System.Web.Caching.CacheDependency dependency, DateTime start);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="filenames" Type="System.String[]" />
        <Parameter Name="cachekeys" Type="System.String[]" />
        <Parameter Name="dependency" Type="System.Web.Caching.CacheDependency" />
        <Parameter Name="start" Type="System.DateTime" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Also, if any of the directories or files specified in the <paramref name="filenames" /> parameter is not found in the file system, it is treated as missing. If a directory or file is missing when the object with the dependency is added to the <see cref="T:System.Web.Caching.Cache" />, the cached object will be removed from the <see cref="T:System.Web.Caching.Cache" /> when that directory or file is created.</para>
          <para>For example, assume that you add an object to the <see cref="T:System.Web.Caching.Cache" /> with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the <see cref="T:System.Web.Caching.CacheDependency" /> object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.</para>
          <block subset="none" type="note">
            <para>Change tracking begins immediately and is not directly based on the <paramref name="start" /> parameter. Use the <paramref name="start" /> parameter to pass a date and time in the past against which you want to check the last modified date of any of the objects passed in the <paramref name="filenames" />, <paramref name="cachekeys" />, or <paramref name="dependency" /> parameters. If the last modified date for any of those objects is later than the date and time passed in the <paramref name="start" /> parameter, the cached item is removed from the <see cref="T:System.Web.Caching.Cache" />.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that monitors an array of paths (to files or directories), an array of cache keys, or both for changes. It also makes itself dependent upon another instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class and a time when the change monitoring begins.</para>
        </summary>
        <param name="filenames">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of paths (to files or directories) that the cached object is dependent upon. When any of these resources changes, the cached object becomes obsolete and is removed from the cache. </param>
        <param name="cachekeys">
          <attribution license="cc4" from="Microsoft" modified="false" />An array of cache keys that the new object monitors for changes. When any of these cache keys changes, the cached object associated with this dependency object becomes obsolete and is removed from the cache. </param>
        <param name="dependency">
          <attribution license="cc4" from="Microsoft" modified="false" />Another instance of the <see cref="T:System.Web.Caching.CacheDependency" /> class that this instance is dependent upon. </param>
        <param name="start">
          <attribution license="cc4" from="Microsoft" modified="false" />The time against which to check the last modified date of the objects in the arrays and the <see cref="T:System.Web.Caching.CacheDependency" /> object. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="DependencyDispose">
      <MemberSignature Language="C#" Value="protected virtual void DependencyDispose ();" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Any class that derives from the <see cref="T:System.Web.Caching.CacheDependency" /> class is required to implement this method to clean up resources the derived class has used.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Releases the resources used by the <see cref="T:System.Web.Caching.CacheDependency" /> class and any classes that derive from <see cref="T:System.Web.Caching.CacheDependency" />.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="Dispose">
      <MemberSignature Language="C#" Value="public void Dispose ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>To be added</remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Releases the resources used by the <see cref="T:System.Web.Caching.CacheDependency" /> object.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="FinishInit">
      <MemberSignature Language="C#" Value="protected void FinishInit ();" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.Caching.CacheDependency.FinishInit" /> method completes the initialization of the <see cref="T:System.Web.Caching.CacheDependency" /> object. This method is called by all <see cref="T:System.Web.Caching.CacheDependency" /> constructors.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Completes initialization of the <see cref="T:System.Web.Caching.CacheDependency" /> object.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="GetUniqueID">
      <MemberSignature Language="C#" Value="public virtual string GetUniqueID ();" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>This method can be particularly useful for tracking multiple instances of the <see cref="T:System.Web.Caching.CacheDependency" /> class associated with an item or an application.</para>
          <para>The identifier is a combination of either the file name (for a file dependency) or the key name (for a cache-key dependency) and a string that this method assigns to the dependency. In classes that derive from the <see cref="T:System.Web.Caching.CacheDependency" /> class, you can override this method to customize how it generates the unique identifier.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Retrieves a unique identifier for a <see cref="T:System.Web.Caching.CacheDependency" /> object.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The unique identifier for the <see cref="T:System.Web.Caching.CacheDependency" /> object.</para>
        </returns>
      </Docs>
    </Member>
    <Member MemberName="HasChanged">
      <MemberSignature Language="C#" Value="public bool HasChanged { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added: an object of type 'bool'</value>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>You can add an item to an ASP.NET application's <see cref="T:System.Web.Caching.Cache" /> with a <see cref="T:System.Web.Caching.CacheDependency" />. When the <see cref="T:System.Web.Caching.CacheDependency" /> changes, the item added to the <see cref="T:System.Web.Caching.Cache" /> is invalidated and removed from the cache. You can use this property to determine whether a <see cref="T:System.Web.Caching.CacheDependency" /> has changed, and recreate the item in the <see cref="T:System.Web.Caching.Cache" /> if that has occurred.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets a value indicating whether the <see cref="T:System.Web.Caching.CacheDependency" /> object has changed.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="NotifyDependencyChanged">
      <MemberSignature Language="C#" Value="protected void NotifyDependencyChanged (object sender, EventArgs e);" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="sender" Type="System.Object" />
        <Parameter Name="e" Type="System.EventArgs" />
      </Parameters>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Any class that derives from the <see cref="T:System.Web.Caching.CacheDependency" /> class must implement this method.</para>
          <para>When you derive from the <see cref="T:System.Web.Caching.CacheDependency" /> class, you use the base functionality of any method or property that you have not overridden. When you create an instance of the derived class, it represents the files, cache keys, database tables, or other arbitrary objects that you want to make a cached item dependent upon. When a dependency item changes, this method notifies the base functionality of the <see cref="T:System.Web.Caching.CacheDependency" /> class that the item has changed, so that the values of the <see cref="P:System.Web.Caching.CacheDependency.HasChanged" /> and <see cref="P:System.Web.Caching.CacheDependency.UtcLastModified" /> properties can be updated.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Notifies the base <see cref="T:System.Web.Caching.CacheDependency" /> object that the dependency represented by a derived <see cref="T:System.Web.Caching.CacheDependency" /> class has changed.</para>
        </summary>
        <param name="sender">
          <attribution license="cc4" from="Microsoft" modified="false" />The source of the event. </param>
        <param name="e">
          <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> object that contains the event data. </param>
      </Docs>
    </Member>
    <Member MemberName="SetUtcLastModified">
      <MemberSignature Language="C#" Value="protected void SetUtcLastModified (DateTime utcLastModified);" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="utcLastModified" Type="System.DateTime" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Marks the time when a dependency last changed.</para>
        </summary>
        <param name="utcLastModified">
          <attribution license="cc4" from="Microsoft" modified="false" />The time when the dependency last changed. </param>
      </Docs>
    </Member>
    <Member MemberName="UtcLastModified">
      <MemberSignature Language="C#" Value="public DateTime UtcLastModified { get; }" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.DateTime</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>This property is measured in Coordinated Universal Time (UTC) (also known as Greenwich Mean Time).</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the time when the dependency was last changed.</para>
        </summary>
      </Docs>
    </Member>
  </Members>
</Type>