sanek2k6

Results 4 comments of sanek2k6

Just a recent example of this that I've seen: ``` [Serializable] public class UnixDateTime { [FieldOrder(0)] [FieldLength(4)] [SerializeAs(SerializedType.UInt4)] public uint TimeStamp { get; set; } [Ignore] public DateTimeOffset Value {...

I'm not sure I understand - the packet definition remains the same (and cannot change as we are implementing a spec), however the bytes for the Contents are optionally encrypted,...

Thank you for the suggestions. In the end, used a wrapper for the serializer and broke the message down in pieces, decrypting the Contents piece when necessary. I think one...

The object can be created to contain just about anything else you like and the serializer can have the following options: - Ignore all fields marked with the [Ignore] attribute...