blob: c06f27f175e968a49f00b9a52c56ea72525c9191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Text;
namespace Photon.Compression.Internal;
[PackSupportedTypes(typeof(StringBuilder))]
public interface IPackStringBuilder
{
SerializationFlags Pack(ref StringBuilder value, StringBuilder preValue, byte[] buffer, ref int bitposition, int frameId, SerializationFlags writeFlags);
SerializationFlags Unpack(ref StringBuilder value, byte[] buffer, ref int bitposition, int frameId, SerializationFlags writeFlags);
}
|