Imported Upstream version 5.10.0.47

Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-01-24 17:04:36 +00:00
parent 88ff76fe28
commit e46a49ecf1
5927 changed files with 226314 additions and 129848 deletions

View File

@ -44,6 +44,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
/// Sets up the streams and file header characters.
/// Uses multiply overloaded methods to call for the compress/decompress.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed class BZip2
{
/// <summary>

View File

@ -38,6 +38,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
/// <summary>
/// Defines internal values for both compression and decompression
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed class BZip2Constants
{
/// <summary>

View File

@ -41,6 +41,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
/// <summary>
/// BZip2Exception represents exceptions specific to Bzip2 algorithm
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class BZip2Exception : SharpZipBaseException
{
/// <summary>

View File

@ -44,6 +44,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
/// <summary>
/// An input stream that decompresses files in the BZip2 format
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class BZip2InputStream : Stream
{
/// <summary>

View File

@ -46,6 +46,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
/// An output stream that compresses into the BZip2 format
/// including file header chars into another stream.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class BZip2OutputStream : Stream
{
/// <summary>

View File

@ -86,6 +86,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
/// </summary>
/// <see cref="ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream"/>
/// <see cref="ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream"/>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed class Adler32 : IChecksum
{
/// <summary>

View File

@ -64,6 +64,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
/// the information needed to generate CRC's on data a byte at a time for all
/// combinations of CRC register values and incoming bytes.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed class Crc32 : IChecksum
{
readonly static uint CrcSeed = 0xFFFFFFFF;

View File

@ -45,6 +45,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
/// <code>getValue</code>. The complete checksum object can also be reset
/// so it can be used again with new data.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public interface IChecksum
{
/// <summary>

View File

@ -43,6 +43,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
/// <summary>
/// Bzip2 checksum algorithm
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class StrangeCRC : IChecksum
{
readonly static uint[] crc32Table = {

View File

@ -42,6 +42,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// Event arguments for scanning.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class ScanEventArgs : EventArgs
{
/// <summary>
@ -79,6 +80,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// Event arguments for directories.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class DirectoryEventArgs : ScanEventArgs
{
/// <summary>
@ -106,6 +108,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// Arguments passed when scan failures are detected.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class ScanFailureEventArgs
{
/// <summary>
@ -155,26 +158,31 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// Delegate invokked when a directory is processed.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProcessDirectoryDelegate(object Sender, DirectoryEventArgs e);
/// <summary>
/// Delegate invoked when a file is processed.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProcessFileDelegate(object sender, ScanEventArgs e);
/// <summary>
/// Delegate invoked when a directory failure is detected.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void DirectoryFailureDelegate(object sender, ScanFailureEventArgs e);
/// <summary>
/// Delegate invoked when a file failure is detected.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void FileFailureDelegate(object sender, ScanFailureEventArgs e);
/// <summary>
/// FileSystemScanner provides facilities scanning of files and directories.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class FileSystemScanner
{
/// <summary>

View File

@ -38,6 +38,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// INameTransform defines how file system names are transformed for use with archives.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public interface INameTransform
{
/// <summary>

View File

@ -50,6 +50,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// and not matching an exclude spec are deemed to match the filter.
/// An empty filter matches any name.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class NameFilter
{
/// <summary>

View File

@ -42,6 +42,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// Scanning filters support these operations.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public interface IScanFilter
{
/// <summary>
@ -55,6 +56,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// PathFilter filters directories and files by full path name.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class PathFilter : IScanFilter
{
/// <summary>
@ -84,6 +86,7 @@ namespace ICSharpCode.SharpZipLib.Core
/// <summary>
/// NameAnsSizeFilter filters based on name and file size.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class NameAndSizeFilter : PathFilter
{

View File

@ -47,6 +47,7 @@ namespace ICSharpCode.SharpZipLib.Encryption
/// While it has been superceded by more recent and more powerful algorithms, its still in use and
/// is viable for preventing casual snooping
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public abstract class PkzipClassic : SymmetricAlgorithm
{
/// <summary>
@ -368,6 +369,7 @@ namespace ICSharpCode.SharpZipLib.Encryption
/// Defines a wrapper object to access the Pkzip algorithm.
/// This class cannot be inherited.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed class PkzipClassicManaged : PkzipClassic
{
/// <summary>

View File

@ -41,6 +41,7 @@ namespace ICSharpCode.SharpZipLib.GZip
/// <summary>
/// This class contains constants used for gzip.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class GZipConstants
{
/// <summary>

View File

@ -41,6 +41,7 @@ namespace ICSharpCode.SharpZipLib.GZip
/// <summary>
/// GZipException represents a Gzip specific exception
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class GZipException : SharpZipBaseException
{
/// <summary>

View File

@ -80,6 +80,7 @@ namespace ICSharpCode.SharpZipLib.GZip
/// }
/// </code>
/// </example>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class GZipInputStream : InflaterInputStream
{
/// <summary>

View File

@ -73,6 +73,7 @@ namespace ICSharpCode.SharpZipLib.GZip
/// }
/// </code>
/// </example>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class GZipOutputStream : DeflaterOutputStream
{
/// <summary>

View File

@ -44,6 +44,7 @@ namespace ICSharpCode.SharpZipLib
/// SharpZipBaseException is the base exception class for the SharpZipLibrary.
/// All library exceptions are derived from this.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class SharpZipBaseException : ApplicationException
{
/// <summary>

View File

@ -38,6 +38,7 @@ namespace ICSharpCode.SharpZipLib.Tar {
/// This exception is used to indicate that there is a problem
/// with a TAR archive header.
/// </summary>
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public class InvalidHeaderException : TarException
{
/// <summary>

Some files were not shown because too many files have changed in this diff Show More