Home | History | Annotate | Download | only in DotZLib

Lines Matching defs:Update

58         /// <param name="data">The data to update the checksum with</param>

64 /// <remarks>All the other <c>Update</c> methods are implemented in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count);
71 /// <param name="data">The data to update the checksum with</param>
72 public void Update(byte[] data)
74 Update(data, 0, data.Length);
80 /// <param name="data">The string to update the checksum with</param>
82 public void Update(string data)
84 Update(Encoding.UTF8.GetBytes(data));
90 /// <param name="data">The string to update the checksum with</param>
92 public void Update(string data, Encoding encoding)
94 Update(encoding.GetBytes(data));
127 /// <param name="data">The data to update the checksum with</param>
133 public override void Update(byte[] data, int offset, int count)
178 /// <param name="data">The data to update the checksum with</param>
184 public override void Update(byte[] data, int offset, int count)