123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>NAnt.CompressionTasks</name>
- </assembly>
- <members>
- <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="M:NAnt.Compression.Tasks.GUnzip.ExecuteTask">
- <summary>
- Extracts the file from the gzip archive.
- </summary>
- </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="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="M:NAnt.Compression.Tasks.TarTask.ExecuteTask">
- <summary>
- Creates the tar file.
- </summary>
- </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.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.Tasks.TarCompressionMethod.None"/>.
- </summary>
- </member>
- <member name="T:NAnt.Compression.Tasks.TarCompressionMethod">
- <summary>
- Specifies the compression methods supported by <see cref="T:NAnt.Compression.Tasks.TarTask"/>.
- </summary>
- </member>
- <member name="F:NAnt.Compression.Tasks.TarCompressionMethod.None">
- <summary>
- No compression.
- </summary>
- </member>
- <member name="F:NAnt.Compression.Tasks.TarCompressionMethod.GZip">
- <summary>
- GZIP compression.
- </summary>
- </member>
- <member name="F:NAnt.Compression.Tasks.TarCompressionMethod.BZip2">
- <summary>
- BZIP2 compression.
- </summary>
- </member>
- <member name="T:NAnt.Compression.Tasks.UnZipTask">
- <summary>
- Extracts files from a zip file.
- </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="M:NAnt.Compression.Tasks.UnZipTask.ExecuteTask">
- <summary>
- Extracts the files from the zip file.
- </summary>
- </member>
- <member name="M:NAnt.Compression.Tasks.UnZipTask.ExtractFile(System.IO.Stream,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="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.UnZipTask.ExtractDirectory(System.IO.Stream,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="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="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.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="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="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="M:NAnt.Compression.Tasks.ZipTask.ExecuteTask">
- <summary>
- Creates the zip file.
- </summary>
- </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.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="F: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="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.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="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="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="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="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="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="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="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="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="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="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>
- <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>
- </members>
- </doc>
|