/usr/lib/NAnt/NAnt.CompressionTasks.xml is in nant 0.92~rc1+dfsg-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 | <?xml version="1.0"?>
<doc>
<assembly>
<name>NAnt.CompressionTasks</name>
</assembly>
<members>
<member name="T:NAnt.Compression.Tasks.ExpandBaseTask">
<summary>
Summary description for ExpandTask.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ExpandBaseTask.Overwrite">
<summary>
Overwrite files, even if they are newer than the corresponding
entries in the archive. The default is <see langword="true" />.
</summary></member>
<member name="M:NAnt.Compression.Tasks.ExpandBaseTask.ExtractFile(System.IO.Stream,System.String,System.String,System.DateTime,System.Int64)">
<summary>
Extracts a file entry from the specified stream.
</summary>
<param name="inputStream">The <see cref="T:System.IO.Stream" /> containing the compressed entry.</param>
<param name="destDirectory">The directory where to store the expanded file.</param>
<param name="entryName">The name of the entry including directory information.</param>
<param name="entryDate">The date of the entry.</param>
<param name="entrySize">The uncompressed size of the entry.</param>
<exception cref="T:NAnt.Core.BuildException">
<para>The destination directory for the entry could not be created.</para>
<para>-or-</para>
<para>The entry could not be extracted.</para>
</exception>
<remarks>
We cannot rely on the fact that the directory entry of a given file
is created before the file is extracted, so we should create the
directory if it doesn't yet exist.
</remarks></member>
<member name="M:NAnt.Compression.Tasks.ExpandBaseTask.ExtractDirectory(System.IO.Stream,System.String,System.String,System.DateTime)">
<summary>
Extracts a directory entry from the specified stream.
</summary>
<param name="inputStream">The <see cref="T:System.IO.Stream" /> containing the directory entry.</param>
<param name="destDirectory">The directory where to create the subdirectory.</param>
<param name="entryName">The name of the directory entry.</param>
<param name="entryDate">The date of the entry.</param>
<exception cref="T:NAnt.Core.BuildException">
<para>The destination directory for the entry could not be created.</para>
</exception></member>
<member name="T:NAnt.Compression.Tasks.GUnzip">
<summary>
Expands a file packed using GZip compression.
</summary>
<example>
<para>Expands "test.tar.gz" to "test2.tar".</para>
<code>
<![CDATA[
<gunzip src="test.tar.gz" dest="test.tar" />
]]>
</code>
</example></member>
<member name="P:NAnt.Compression.Tasks.GUnzip.SrcFile">
<summary>
The file to expand.
</summary></member>
<member name="P:NAnt.Compression.Tasks.GUnzip.DestFile">
<summary>
The destination file.
</summary></member>
<member name="M:NAnt.Compression.Tasks.GUnzip.ExecuteTask">
<summary>
Extracts the file from the gzip archive.
</summary></member>
<member name="T:NAnt.Compression.Tasks.TarTask">
<summary>
Creates a tar file from the specified filesets.
</summary>
<remarks>
<para>Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see> (SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.</para>
</remarks>
<example>
<para>
Tar all files in <c>${build.dir}</c> and <c>${doc.dir}</c> into a file
called "backup.tar.gz", and apply gzip compression to it.
</para>
<code>
<![CDATA[
<tar destfile="backup.tar.gz" compression="GZip">
<fileset basedir="${bin.dir}" prefix="bin">
<include name="**/*" />
</fileset>
<fileset basedir="${doc.dir}" prefix="doc">
<include name="**/*" />
</fileset>
</tar>
]]>
</code>
</example></member>
<member name="P:NAnt.Compression.Tasks.TarTask.DestFile">
<summary>
The tar file to create.
</summary></member>
<member name="P:NAnt.Compression.Tasks.TarTask.IncludeEmptyDirs">
<summary>
Include empty directories in the generated tar file. The default is
<see langword="false" />.
</summary></member>
<member name="P:NAnt.Compression.Tasks.TarTask.Flatten">
<summary>
Ignore directory structure of source directory, compress all files
into a single directory.
The default value is <see langword="false" />.
</summary></member>
<member name="P:NAnt.Compression.Tasks.TarTask.TarFileSets">
<summary>
The set of files to be included in the archive.
</summary></member>
<member name="P:NAnt.Compression.Tasks.TarTask.CompressionMethod">
<summary>
The compression method. The default is <see cref="F:NAnt.Compression.Types.TarCompressionMethod.None" />.
</summary></member>
<member name="M:NAnt.Compression.Tasks.TarTask.ExecuteTask">
<summary>
Creates the tar file.
</summary></member>
<member name="T:NAnt.Compression.Tasks.UnTarTask">
<summary>
Extracts files from a tar archive.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>Extracts all files from a gzipped tar, preserving the directory structure.</para>
<code>
<![CDATA[
<untar src="nant-bin.tar.gz" dest="bin" compression="gzip" />
]]>
</code>
</example></member>
<member name="P:NAnt.Compression.Tasks.UnTarTask.SrcFile">
<summary>
The archive file to expand.
</summary></member>
<member name="P:NAnt.Compression.Tasks.UnTarTask.DestinationDirectory">
<summary>
The directory where to store the expanded file(s). The default is
the project base directory.
</summary></member>
<member name="P:NAnt.Compression.Tasks.UnTarTask.CompressionMethod">
<summary>
The compression method. The default is <see cref="F:NAnt.Compression.Types.TarCompressionMethod.None" />.
</summary></member>
<member name="M:NAnt.Compression.Tasks.UnTarTask.ExecuteTask">
<summary>
Extracts the files from the archive.
</summary></member>
<member name="T:NAnt.Compression.Tasks.UnZipTask">
<summary>
Extracts files from a zip archive.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>Extracts all the file from the zip, preserving the directory structure.</para>
<code>
<![CDATA[
<unzip zipfile="backup.zip"/>
]]>
</code>
</example></member>
<member name="P:NAnt.Compression.Tasks.UnZipTask.ZipFile">
<summary>
The archive file to expand.
</summary></member>
<member name="P:NAnt.Compression.Tasks.UnZipTask.ToDirectory">
<summary>
The directory where the expanded files should be stored. The
default is the project base directory.
</summary></member>
<member name="P:NAnt.Compression.Tasks.UnZipTask.Encoding">
<summary>
The character encoding that has been used for filenames inside the
zip file. The default is the system's OEM code page.
</summary></member>
<member name="M:NAnt.Compression.Tasks.UnZipTask.ExecuteTask">
<summary>
Extracts the files from the zip file.
</summary></member>
<member name="T:NAnt.Compression.Tasks.ZipTask">
<summary>
Creates a zip file from the specified filesets.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>
Zip all files in <c>${build.dir}</c> and <c>${doc.dir}</c> into a file
called "backup.zip".
</para>
<code>
<![CDATA[
<zip zipfile="backup.zip">
<fileset basedir="${bin.dir}" prefix="bin">
<include name="**/*" />
</fileset>
<fileset basedir="${doc.dir}" prefix="doc">
<include name="**/*" />
</fileset>
</zip>
]]>
</code>
</example></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.ZipFile">
<summary>
The zip file to create.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Comment">
<summary>
The comment for the file.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Stamp">
<summary>
Date/time stamp for the files in the format MM/DD/YYYY HH:MM:SS.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.ZipLevel">
<summary>
Desired level of compression. Possible values are 0 (STORE only)
to 9 (highest). The default is <c>6</c>.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.IncludeEmptyDirs">
<summary>
Include empty directories in the generated zip file. The default is
<see langword="false" />.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Flatten">
<summary>
Ignore directory structure of source directory, compress all files
into a single directory.
The default value is <see langword="false" />.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.ZipFileSets">
<summary>
The set of files to be included in the archive.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.DuplicateHandling">
<summary>
Specifies the behaviour when a duplicate file is found. The default
is <see cref="T:NAnt.Compression.Types.DuplicateHandling.Add" />.
</summary></member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Encoding">
<summary>
The character encoding to use for filenames and comment inside the
zip file. The default is the system's OEM code page.
</summary></member>
<member name="M:NAnt.Compression.Tasks.ZipTask.ExecuteTask">
<summary>
Creates the zip file.
</summary></member>
<member name="T:NAnt.Compression.Types.DuplicateHandling">
<summary>
Specifies how entries with the same name should be processed.
</summary></member>
<member name="F:NAnt.Compression.Types.DuplicateHandling.Add">
<summary>
Overwrite existing entry with same name.
</summary></member>
<member name="F:NAnt.Compression.Types.DuplicateHandling.Preserve">
<summary>
Preserve existing entry with the same name.
</summary></member>
<member name="F:NAnt.Compression.Types.DuplicateHandling.Fail">
<summary>
Report failure when two entries have the same name.
</summary></member>
<member name="T:NAnt.Compression.Types.DuplicateHandlingConverter">
<summary>
Specialized <see cref="T:System.ComponentModel.EnumConverter" /> for <see cref="T:NAnt.Compression.Types.TarCompressionMethod" />
that ignores case when converting from string.
</summary></member>
<member name="M:NAnt.Compression.Types.DuplicateHandlingConverter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.DuplicateHandlingConverter" />
class.
</summary></member>
<member name="M:NAnt.Compression.Types.DuplicateHandlingConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the
specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> object. If a <see langword="null" /> is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object" /> to convert.</param>
<returns>
An <see cref="T:System.Object" /> that represents the converted value.
</returns></member>
<member name="T:NAnt.Compression.Types.TarCompressionMethod">
<summary>
Specifies the compression methods supported by <see cref="T:NAnt.Compression.Tasks.TarTask" />
and <see cref="T:NAnt.Compression.Tasks.UnTarTask" />.
</summary></member>
<member name="F:NAnt.Compression.Types.TarCompressionMethod.None">
<summary>
No compression.
</summary></member>
<member name="F:NAnt.Compression.Types.TarCompressionMethod.GZip">
<summary>
GZIP compression.
</summary></member>
<member name="F:NAnt.Compression.Types.TarCompressionMethod.BZip2">
<summary>
BZIP2 compression.
</summary></member>
<member name="T:NAnt.Compression.Types.TarCompressionMethodConverter">
<summary>
Specialized <see cref="T:System.ComponentModel.EnumConverter" /> for <see cref="T:NAnt.Compression.Types.TarCompressionMethod" />
that ignores case when converting from string.
</summary></member>
<member name="M:NAnt.Compression.Types.TarCompressionMethodConverter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.TarCompressionMethodConverter" />
class.
</summary></member>
<member name="M:NAnt.Compression.Types.TarCompressionMethodConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the
specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> object. If a <see langword="null" /> is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object" /> to convert.</param>
<returns>
An <see cref="T:System.Object" /> that represents the converted value.
</returns></member>
<member name="T:NAnt.Compression.Types.TarFileSet">
<summary>
A <see cref="T:NAnt.Compression.Types.TarFileSet" /> is a <see cref="T:NAnt.Core.Types.FileSet" /> with extra
attributes useful in the context of the <see cref="T:NAnt.Compression.Tasks.TarTask" />.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.FileMode">
<summary>
A 3 digit octal string, specify the user, group and other modes
in the standard Unix fashion. Only applies to plain files. The
default is <c>644</c>.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.DirMode">
<summary>
A 3 digit octal string, specify the user, group and other modes
in the standard Unix fashion. Only applies to directories. The
default is <c>755</c>.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.UserName">
<summary>
The username for the tar entry.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.Uid">
<summary>
The user identifier (UID) for the tar entry.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.GroupName">
<summary>
The groupname for the tar entry.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.Gid">
<summary>
The group identifier (GID) for the tar entry.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSet.Prefix">
<summary>
The top level directory prefix. If set, all file and directory paths
in the fileset will have this value prepended. Can either be a single
directory name or a "/" separated path.
</summary></member>
<member name="T:NAnt.Compression.Types.TarFileSetCollection">
<summary>
Contains a collection of <see cref="T:NAnt.Compression.Types.TarFileSet" /> elements.
</summary></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.TarFileSetCollection" /> class.
</summary></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.#ctor(NAnt.Compression.Types.TarFileSetCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.TarFileSetCollection" /> class
with the specified <see cref="T:NAnt.Compression.Types.TarFileSetCollection" /> instance.
</summary></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.#ctor(NAnt.Compression.Types.TarFileSet[])">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.TarFileSetCollection" /> class
with the specified array of <see cref="T:NAnt.Compression.Types.TarFileSet" /> instances.
</summary></member>
<member name="P:NAnt.Compression.Types.TarFileSetCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param></member>
<member name="P:NAnt.Compression.Types.TarFileSetCollection.FileCount">
<summary>
Get the total number of files that are represented by the
filesets in this collection.
</summary></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.Add(NAnt.Compression.Types.TarFileSet)">
<summary>
Adds a <see cref="T:NAnt.Compression.Types.TarFileSet" /> to the end of the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.TarFileSet" /> to be added to the end of the collection.</param>
<returns>The position into which the new element was inserted.</returns></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.AddRange(NAnt.Compression.Types.TarFileSet[])">
<summary>
Adds the elements of a <see cref="T:NAnt.Compression.Types.TarFileSet" /> array to the end of the collection.
</summary>
<param name="items">The array of <see cref="T:NAnt.Compression.Types.TarFileSet" /> elements to be added to the end of the collection.</param></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.AddRange(NAnt.Compression.Types.TarFileSetCollection)">
<summary>
Adds the elements of a <see cref="T:NAnt.Compression.Types.TarFileSetCollection" /> to the end of the collection.
</summary>
<param name="items">The <see cref="T:NAnt.Compression.Types.TarFileSetCollection" /> to be added to the end of the collection.</param></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.Contains(NAnt.Compression.Types.TarFileSet)">
<summary>
Determines whether a <see cref="T:NAnt.Compression.Types.TarFileSet" /> is in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.TarFileSet" /> to locate in the collection.</param>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the
collection; otherwise, <see langword="false" />.
</returns></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.CopyTo(NAnt.Compression.Types.TarFileSet[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.IndexOf(NAnt.Compression.Types.TarFileSet)">
<summary>
Retrieves the index of a specified <see cref="T:NAnt.Compression.Types.TarFileSet" /> object in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.TarFileSet" /> object for which the index is returned.</param>
<returns>
The index of the specified <see cref="T:NAnt.Compression.Types.TarFileSet" />. If the <see cref="T:NAnt.Compression.Types.TarFileSet" /> is not currently a member of the collection, it returns -1.
</returns></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.Insert(System.Int32,NAnt.Compression.Types.TarFileSet)">
<summary>
Inserts a <see cref="T:NAnt.Compression.Types.TarFileSet" /> into the collection at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The <see cref="T:NAnt.Compression.Types.TarFileSet" /> to insert.</param></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>
A <see cref="T:NAnt.Compression.Types.TarFileSetEnumerator" /> for the entire collection.
</returns></member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.Remove(NAnt.Compression.Types.TarFileSet)">
<summary>
Removes a member from the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.TarFileSet" /> to remove from the collection.</param></member>
<member name="T:NAnt.Compression.Types.TarFileSetEnumerator">
<summary>
Enumerates the <see cref="T:NAnt.Compression.Types.TarFileSet" /> elements of a <see cref="T:NAnt.Compression.Types.TarFileSetCollection" />.
</summary></member>
<member name="M:NAnt.Compression.Types.TarFileSetEnumerator.#ctor(NAnt.Compression.Types.TarFileSetCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.TarFileSetEnumerator" /> class
with the specified <see cref="T:NAnt.Compression.Types.TarFileSetCollection" />.
</summary>
<param name="TarFileSets">The collection that should be enumerated.</param></member>
<member name="P:NAnt.Compression.Types.TarFileSetEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns></member>
<member name="M:NAnt.Compression.Types.TarFileSetEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns></member>
<member name="M:NAnt.Compression.Types.TarFileSetEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary></member>
<member name="T:NAnt.Compression.Types.ZipFileSet">
<summary>
A <see cref="T:NAnt.Compression.Types.ZipFileSet" /> is a <see cref="T:NAnt.Core.Types.FileSet" /> with extra
attributes useful in the context of the <see cref="T:NAnt.Compression.Tasks.ZipTask" />.
</summary></member>
<member name="P:NAnt.Compression.Types.ZipFileSet.Prefix">
<summary>
The top level directory prefix. If set, all file and directory paths
in the fileset will have this value prepended. Can either be a single
directory name or a "/" separated path.
</summary></member>
<member name="T:NAnt.Compression.Types.ZipFileSetCollection">
<summary>
Contains a collection of <see cref="T:NAnt.Compression.Types.ZipFileSet" /> elements.
</summary></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" /> class.
</summary></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.#ctor(NAnt.Compression.Types.ZipFileSetCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" /> class
with the specified <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" /> instance.
</summary></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.#ctor(NAnt.Compression.Types.ZipFileSet[])">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" /> class
with the specified array of <see cref="T:NAnt.Compression.Types.ZipFileSet" /> instances.
</summary></member>
<member name="P:NAnt.Compression.Types.ZipFileSetCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param></member>
<member name="P:NAnt.Compression.Types.ZipFileSetCollection.FileCount">
<summary>
Get the total number of files that are represented by the
filesets in this collection.
</summary></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.Add(NAnt.Compression.Types.ZipFileSet)">
<summary>
Adds a <see cref="T:NAnt.Compression.Types.ZipFileSet" /> to the end of the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.ZipFileSet" /> to be added to the end of the collection.</param>
<returns>The position into which the new element was inserted.</returns></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.AddRange(NAnt.Compression.Types.ZipFileSet[])">
<summary>
Adds the elements of a <see cref="T:NAnt.Compression.Types.ZipFileSet" /> array to the end of the collection.
</summary>
<param name="items">The array of <see cref="T:NAnt.Compression.Types.ZipFileSet" /> elements to be added to the end of the collection.</param></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.AddRange(NAnt.Compression.Types.ZipFileSetCollection)">
<summary>
Adds the elements of a <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" /> to the end of the collection.
</summary>
<param name="items">The <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" /> to be added to the end of the collection.</param></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.Contains(NAnt.Compression.Types.ZipFileSet)">
<summary>
Determines whether a <see cref="T:NAnt.Compression.Types.ZipFileSet" /> is in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.ZipFileSet" /> to locate in the collection.</param>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the
collection; otherwise, <see langword="false" />.
</returns></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.CopyTo(NAnt.Compression.Types.ZipFileSet[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.IndexOf(NAnt.Compression.Types.ZipFileSet)">
<summary>
Retrieves the index of a specified <see cref="T:NAnt.Compression.Types.ZipFileSet" /> object in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.ZipFileSet" /> object for which the index is returned.</param>
<returns>
The index of the specified <see cref="T:NAnt.Compression.Types.ZipFileSet" />. If the <see cref="T:NAnt.Compression.Types.ZipFileSet" /> is not currently a member of the collection, it returns -1.
</returns></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.Insert(System.Int32,NAnt.Compression.Types.ZipFileSet)">
<summary>
Inserts a <see cref="T:NAnt.Compression.Types.ZipFileSet" /> into the collection at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The <see cref="T:NAnt.Compression.Types.ZipFileSet" /> to insert.</param></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>
A <see cref="T:NAnt.Compression.Types.ZipFileSetEnumerator" /> for the entire collection.
</returns></member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.Remove(NAnt.Compression.Types.ZipFileSet)">
<summary>
Removes a member from the collection.
</summary>
<param name="item">The <see cref="T:NAnt.Compression.Types.ZipFileSet" /> to remove from the collection.</param></member>
<member name="T:NAnt.Compression.Types.ZipFileSetEnumerator">
<summary>
Enumerates the <see cref="T:NAnt.Compression.Types.ZipFileSet" /> elements of a <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" />.
</summary></member>
<member name="M:NAnt.Compression.Types.ZipFileSetEnumerator.#ctor(NAnt.Compression.Types.ZipFileSetCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.Compression.Types.ZipFileSetEnumerator" /> class
with the specified <see cref="T:NAnt.Compression.Types.ZipFileSetCollection" />.
</summary>
<param name="ZipFileSets">The collection that should be enumerated.</param></member>
<member name="P:NAnt.Compression.Types.ZipFileSetEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns></member>
<member name="M:NAnt.Compression.Types.ZipFileSetEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns></member>
<member name="M:NAnt.Compression.Types.ZipFileSetEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary></member>
</members>
</doc>
|