Lines Matching refs:Public
32 public IntPtr next_in;
33 public uint avail_in;
34 public uint total_in;
36 public IntPtr next_out;
37 public uint avail_out;
38 public uint total_out;
49 public uint adler;
57 #region Public enums
61 public enum CompressLevel : int
86 public class ZLibException : ApplicationException
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
114 public interface ChecksumGenerator
169 public delegate void DataAvailableHandler(byte[] data, int startIndex, int count);
174 public interface Codec
216 public class Info
245 public Info()
253 public bool HasDebugInfo { get { return 0 != (_flags & 0x100); } }
258 public bool UsesAssemblyCode { get { return 0 != (_flags & 0x200); } }
263 public int SizeOfUInt { get { return bitSize(_flags & 3); } }
268 public int SizeOfULong { get { return bitSize((_flags >> 2) & 3); } }
273 public int SizeOfPointer { get { return bitSize((_flags >> 4) & 3); } }
278 public int SizeOfOffset { get { return bitSize((_flags >> 6) & 3); } }
283 public static string Version { get { return zlibVersion(); } }