-
Notifications
You must be signed in to change notification settings - Fork 0
Changes from 1.4.2 to 1.4.3
Andrej Dobes edited this page Aug 4, 2017
·
4 revisions
- Changed license from Apache 2.0 to MIT.
- Newly added class.
- Represents builder for packet. Class allows to use all writing methods that Packet class has.
- Removed method "byte[] Encrypt(string)".
- Added method "byte[] Encrypt(string, Encoding)" with default encoding value "null" (ASCII will be used in case of null).
- Added method "string Decrypt(byte[], Encoding)" with default encoding value "null" (ASCII will be used in case of null).
- Method "byte[] Decrypt(string)" marked as obsolete.
- Removed method "void Write(string)".
- Removed method "string ReadString()".
- Added method "void Write(string, Encoding)" with default encoding value "null" (ASCII will be used in case of null).
- Added method "string ReadString(Encoding)" with default encoding value "null" (ASCII will be used in case of null).
- Added method "PacketBuilder Builder()".