Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-01-15 15:22:40 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-01-15 15:22:40 +0300
commit47546281d89a8bd1e639c081d0d1e3f7142a20ac (patch)
treebe68f2a6037486930a75343dced674ea5d7186ef /src
parent9f07d0746d94d2c2b055e3e689814ca07431e5fd (diff)
Add Obsolete message to ICSharpCode.SharpZipLib.dll
Users should use the nuget package instead, we'll remove the assembly in Mono 6.0
Diffstat (limited to 'src')
-rw-r--r--src/mono/ICSharpCode.SharpZipLib.cs66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/mono/ICSharpCode.SharpZipLib.cs b/src/mono/ICSharpCode.SharpZipLib.cs
index 887a092..0f338cd 100644
--- a/src/mono/ICSharpCode.SharpZipLib.cs
+++ b/src/mono/ICSharpCode.SharpZipLib.cs
@@ -17,6 +17,7 @@
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
namespace ICSharpCode.SharpZipLib
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class SharpZipBaseException : System.ApplicationException
{
public SharpZipBaseException() { }
@@ -26,12 +27,14 @@ namespace ICSharpCode.SharpZipLib
}
namespace ICSharpCode.SharpZipLib.BZip2
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class BZip2
{
public BZip2() { }
public static void Compress(System.IO.Stream instream, System.IO.Stream outstream, int blockSize) { }
public static void Decompress(System.IO.Stream instream, System.IO.Stream outstream) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class BZip2Constants
{
internal BZip2Constants() { }
@@ -47,11 +50,13 @@ namespace ICSharpCode.SharpZipLib.BZip2
public static readonly int RUNA;
public static readonly int RUNB;
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class BZip2Exception : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public BZip2Exception() { }
public BZip2Exception(string message) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class BZip2InputStream : System.IO.Stream
{
public BZip2InputStream(System.IO.Stream stream) { }
@@ -69,6 +74,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
public override void Write(byte[] array, int offset, int count) { }
public override void WriteByte(byte val) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class BZip2OutputStream : System.IO.Stream
{
public BZip2OutputStream(System.IO.Stream stream) { }
@@ -91,6 +97,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
}
namespace ICSharpCode.SharpZipLib.Checksums
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class Adler32 : ICSharpCode.SharpZipLib.Checksums.IChecksum
{
public Adler32() { }
@@ -100,6 +107,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
public void Update(byte[] buf, int off, int len) { }
public void Update(int bval) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class Crc32 : ICSharpCode.SharpZipLib.Checksums.IChecksum
{
public Crc32() { }
@@ -109,6 +117,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
public void Update(byte[] buf, int off, int len) { }
public void Update(int bval) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface IChecksum
{
long Value { get; }
@@ -117,6 +126,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
void Update(byte[] buf, int off, int len);
void Update(int bval);
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class StrangeCRC : ICSharpCode.SharpZipLib.Checksums.IChecksum
{
public StrangeCRC() { }
@@ -129,13 +139,17 @@ namespace ICSharpCode.SharpZipLib.Checksums
}
namespace ICSharpCode.SharpZipLib.Core
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DirectoryEventArgs : ICSharpCode.SharpZipLib.Core.ScanEventArgs
{
public DirectoryEventArgs(string name, bool hasMatchingFiles) : base (default(string)) { }
public bool HasMatchingFiles { get { throw null; } }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void DirectoryFailureDelegate(object sender, ICSharpCode.SharpZipLib.Core.ScanFailureEventArgs e);
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void FileFailureDelegate(object sender, ICSharpCode.SharpZipLib.Core.ScanFailureEventArgs e);
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class FileSystemScanner
{
public ICSharpCode.SharpZipLib.Core.DirectoryFailureDelegate DirectoryFailure;
@@ -152,15 +166,18 @@ namespace ICSharpCode.SharpZipLib.Core
public void OnProcessFile(string file) { }
public void Scan(string directory, bool recurse) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface INameTransform
{
string TransformDirectory(string name);
string TransformFile(string name);
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface IScanFilter
{
bool IsMatch(string name);
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class NameAndSizeFilter : ICSharpCode.SharpZipLib.Core.PathFilter
{
public NameAndSizeFilter(string filter, long minSize, long maxSize) : base (default(string)) { }
@@ -168,6 +185,7 @@ namespace ICSharpCode.SharpZipLib.Core
public long MinSize { get { throw null; } set { } }
public override bool IsMatch(string fileName) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class NameFilter
{
public NameFilter(string filter) { }
@@ -178,19 +196,24 @@ namespace ICSharpCode.SharpZipLib.Core
public static bool IsValidFilterExpression(string toTest) { throw null; }
public override string ToString() { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class PathFilter : ICSharpCode.SharpZipLib.Core.IScanFilter
{
public PathFilter(string filter) { }
public virtual bool IsMatch(string name) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProcessDirectoryDelegate(object Sender, ICSharpCode.SharpZipLib.Core.DirectoryEventArgs e);
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProcessFileDelegate(object sender, ICSharpCode.SharpZipLib.Core.ScanEventArgs e);
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ScanEventArgs : System.EventArgs
{
public ScanEventArgs(string name) { }
public bool ContinueRunning { get { throw null; } set { } }
public string Name { get { throw null; } }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ScanFailureEventArgs
{
public ScanFailureEventArgs(string name, System.Exception e) { }
@@ -201,11 +224,13 @@ namespace ICSharpCode.SharpZipLib.Core
}
namespace ICSharpCode.SharpZipLib.Encryption
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public abstract partial class PkzipClassic : System.Security.Cryptography.SymmetricAlgorithm
{
protected PkzipClassic() { }
public static byte[] GenerateKeys(byte[] seed) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class PkzipClassicManaged : ICSharpCode.SharpZipLib.Encryption.PkzipClassic
{
public PkzipClassicManaged() { }
@@ -221,6 +246,7 @@ namespace ICSharpCode.SharpZipLib.Encryption
}
namespace ICSharpCode.SharpZipLib.GZip
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipConstants
{
internal GZipConstants() { }
@@ -231,11 +257,13 @@ namespace ICSharpCode.SharpZipLib.GZip
public const int FTEXT = 1;
public static readonly int GZIP_MAGIC;
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipException : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public GZipException() { }
public GZipException(string message) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipInputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream
{
protected ICSharpCode.SharpZipLib.Checksums.Crc32 crc;
@@ -244,6 +272,7 @@ namespace ICSharpCode.SharpZipLib.GZip
public GZipInputStream(System.IO.Stream baseInputStream, int size) : base (default(System.IO.Stream)) { }
public override int Read(byte[] buf, int offset, int len) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipOutputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream
{
protected ICSharpCode.SharpZipLib.Checksums.Crc32 crc;
@@ -258,12 +287,15 @@ namespace ICSharpCode.SharpZipLib.GZip
}
namespace ICSharpCode.SharpZipLib.Tar
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InvalidHeaderException : ICSharpCode.SharpZipLib.Tar.TarException
{
public InvalidHeaderException() { }
public InvalidHeaderException(string msg) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProgressMessageHandler(ICSharpCode.SharpZipLib.Tar.TarArchive archive, ICSharpCode.SharpZipLib.Tar.TarEntry entry, string message);
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarArchive
{
protected TarArchive() { }
@@ -289,6 +321,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public void SetUserInfo(int userId, string userName, int groupId, string groupName) { }
public void WriteEntry(ICSharpCode.SharpZipLib.Tar.TarEntry sourceEntry, bool recurse) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarBuffer
{
public const int BlockSize = 512;
@@ -312,6 +345,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public void WriteBlock(byte[] block) { }
public void WriteBlock(byte[] buf, int offset) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarEntry : System.ICloneable
{
public TarEntry(ICSharpCode.SharpZipLib.Tar.TarHeader header) { }
@@ -340,11 +374,13 @@ namespace ICSharpCode.SharpZipLib.Tar
public void SetNames(string userName, string groupName) { }
public void WriteEntryHeader(byte[] outbuf) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarException : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public TarException() { }
public TarException(string message) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarHeader : System.ICloneable
{
public static readonly int CHKSUMLEN;
@@ -419,6 +455,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public static void SetValueDefaults(int userId, string userName, int groupId, string groupName) { }
public void WriteHeader(byte[] outbuf) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarInputStream : System.IO.Stream
{
protected ICSharpCode.SharpZipLib.Tar.TarBuffer buffer;
@@ -452,6 +489,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public void Skip(long numToSkip) { }
public override void Write(byte[] array, int offset, int count) { }
public override void WriteByte(byte val) { }
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class EntryFactoryAdapter : ICSharpCode.SharpZipLib.Tar.TarInputStream.IEntryFactory
{
public EntryFactoryAdapter() { }
@@ -459,6 +497,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntry(string name) { throw null; }
public ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntryFromFile(string fileName) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface IEntryFactory
{
ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntry(byte[] headerBuf);
@@ -466,6 +505,7 @@ namespace ICSharpCode.SharpZipLib.Tar
ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntryFromFile(string fileName);
}
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarOutputStream : System.IO.Stream
{
protected byte[] assemBuf;
@@ -499,6 +539,7 @@ namespace ICSharpCode.SharpZipLib.Tar
}
namespace ICSharpCode.SharpZipLib.Zip
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public enum CompressionMethod
{
BZip2 = 11,
@@ -507,6 +548,7 @@ namespace ICSharpCode.SharpZipLib.Zip
Stored = 0,
WinZipAES = 99,
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class FastZip
{
public FastZip() { }
@@ -525,6 +567,7 @@ namespace ICSharpCode.SharpZipLib.Zip
Prompt = 0,
}
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class FastZipEvents
{
public ICSharpCode.SharpZipLib.Core.DirectoryFailureDelegate DirectoryFailure;
@@ -537,6 +580,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public void OnProcessDirectory(string directory, bool hasMatchingFiles) { }
public void OnProcessFile(string file) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class KeysRequiredEventArgs : System.EventArgs
{
public KeysRequiredEventArgs(string name) { }
@@ -544,6 +588,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public string FileName { get { throw null; } }
public byte[] Key { get { throw null; } set { } }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class ZipConstants
{
public const int CENATT = 36;
@@ -601,6 +646,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public static string ConvertToString(byte[] data) { throw null; }
public static string ConvertToString(byte[] data, int length) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipEntry : System.ICloneable
{
public ZipEntry(ICSharpCode.SharpZipLib.Zip.ZipEntry e) { }
@@ -630,11 +676,13 @@ namespace ICSharpCode.SharpZipLib.Zip
public object Clone() { throw null; }
public override string ToString() { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipException : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public ZipException() { }
public ZipException(string msg) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipFile : System.Collections.IEnumerable
{
public ICSharpCode.SharpZipLib.Zip.ZipFile.KeysRequiredEventHandler KeysRequired;
@@ -656,6 +704,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public bool TestArchive(bool testData) { throw null; }
public delegate void KeysRequiredEventHandler(object sender, ICSharpCode.SharpZipLib.Zip.KeysRequiredEventArgs e);
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipInputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream
{
public ZipInputStream(System.IO.Stream baseInputStream) : base (default(System.IO.Stream)) { }
@@ -669,6 +718,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public override int Read(byte[] destination, int index, int count) { throw null; }
public override int ReadByte() { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipNameTransform : ICSharpCode.SharpZipLib.Core.INameTransform
{
public ZipNameTransform() { }
@@ -678,6 +728,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public string TransformDirectory(string name) { throw null; }
public string TransformFile(string name) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipOutputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream
{
public ZipOutputStream(System.IO.Stream baseOutputStream) : base (default(System.IO.Stream)) { }
@@ -693,6 +744,7 @@ namespace ICSharpCode.SharpZipLib.Zip
}
namespace ICSharpCode.SharpZipLib.Zip.Compression
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class Deflater
{
public static int BEST_COMPRESSION;
@@ -721,6 +773,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SetLevel(int lvl) { }
public void SetStrategy(ICSharpCode.SharpZipLib.Zip.Compression.DeflateStrategy strategy) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterConstants
{
public static int[] COMPR_FUNC;
@@ -752,6 +805,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public const int WSIZE = 32768;
public DeflaterConstants() { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterEngine : ICSharpCode.SharpZipLib.Zip.Compression.DeflaterConstants
{
public DeflaterEngine(ICSharpCode.SharpZipLib.Zip.Compression.DeflaterPending pending) { }
@@ -767,6 +821,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SetInput(byte[] buf, int off, int len) { }
public void SetLevel(int lvl) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterHuffman
{
public ICSharpCode.SharpZipLib.Zip.Compression.DeflaterPending pending;
@@ -780,6 +835,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SendAllTrees(int blTreeCodes) { }
public bool TallyDist(int dist, int len) { throw null; }
public bool TallyLit(int lit) { throw null; }
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class Tree
{
public short[] freqs;
@@ -798,16 +854,19 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void WriteTree(ICSharpCode.SharpZipLib.Zip.Compression.DeflaterHuffman.Tree blTree) { }
}
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterPending : ICSharpCode.SharpZipLib.Zip.Compression.PendingBuffer
{
public DeflaterPending() { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public enum DeflateStrategy
{
Default = 0,
Filtered = 1,
HuffmanOnly = 2,
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class Inflater
{
public Inflater() { }
@@ -827,6 +886,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SetInput(byte[] buf) { }
public void SetInput(byte[] buffer, int offset, int length) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InflaterHuffmanTree
{
public static ICSharpCode.SharpZipLib.Zip.Compression.InflaterHuffmanTree defDistTree;
@@ -834,6 +894,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public InflaterHuffmanTree(byte[] codeLengths) { }
public int GetSymbol(ICSharpCode.SharpZipLib.Zip.Compression.Streams.StreamManipulator input) { throw null; }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class PendingBuffer
{
protected byte[] buf;
@@ -855,6 +916,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
}
namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
{
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterOutputStream : System.IO.Stream
{
protected System.IO.Stream baseOutputStream;
@@ -888,6 +950,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public override void Write(byte[] buf, int off, int len) { }
public override void WriteByte(byte bval) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InflaterInputBuffer
{
public InflaterInputBuffer(System.IO.Stream stream) { }
@@ -907,6 +970,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public int ReadRawBuffer(byte[] outBuffer, int offset, int length) { throw null; }
public void SetInflaterInput(ICSharpCode.SharpZipLib.Zip.Compression.Inflater inflater) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InflaterInputStream : System.IO.Stream
{
protected System.IO.Stream baseInputStream;
@@ -935,6 +999,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public override void Write(byte[] array, int offset, int count) { }
public override void WriteByte(byte val) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class OutputWindow
{
public OutputWindow() { }
@@ -947,6 +1012,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public void Reset() { }
public void Write(int abyte) { }
}
+ [System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class StreamManipulator
{
public StreamManipulator() { }