Example #1
0
        /// <summary>Helper: create a new instance to deserializing into</summary>
        public static EventGameEnd DeserializeLength(Stream stream, int length)
        {
            EventGameEnd instance = new EventGameEnd();

            DeserializeLength(stream, length, instance);
            return(instance);
        }
Example #2
0
        /// <summary>Helper: Serialize with a varint length prefix</summary>
        public static void SerializeLengthDelimited(Stream stream, EventGameEnd instance)
        {
            var data = SerializeToBytes(instance);

            global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt32(stream, (uint)data.Length);
            stream.Write(data, 0, data.Length);
        }
Example #3
0
        /// <summary>Helper: create a new instance to deserializing into</summary>
        public static EventGameEnd DeserializeLengthDelimited(Stream stream)
        {
            EventGameEnd instance = new EventGameEnd();

            DeserializeLengthDelimited(stream, instance);
            return(instance);
        }
Example #4
0
        /// <summary>Helper: create a new instance to deserializing into</summary>
        public static EventGameEnd Deserialize(Stream stream)
        {
            EventGameEnd instance = new EventGameEnd();

            Deserialize(stream, instance);
            return(instance);
        }
Example #5
0
 /// <summary>Helper: Serialize into a MemoryStream and return its byte array</summary>
 public static byte[] SerializeToBytes(EventGameEnd instance)
 {
     using (var ms = new MemoryStream())
     {
         Serialize(ms, instance);
         return(ms.ToArray());
     }
 }
Example #6
0
        /// <summary>Helper: put the buffer into a MemoryStream and create a new instance to deserializing into</summary>
        public static EventGameEnd Deserialize(byte[] buffer)
        {
            EventGameEnd instance = new EventGameEnd();

            using (var ms = new MemoryStream(buffer))
                Deserialize(ms, instance);
            return(instance);
        }
Example #7
0
        /// <summary>Serialize the instance into the stream</summary>
        public static void Serialize(Stream stream, EventGameEnd instance)
        {
            var msField = global::SilentOrbit.ProtocolBuffers.ProtocolParser.Stack.Pop();

            // Key for field: 1, Varint
            stream.WriteByte(8);
            global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt64(stream, instance.GameID);
            // Key for field: 2, Varint
            stream.WriteByte(16);
            global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt64(stream, (ulong)instance.EndTime);
            global::SilentOrbit.ProtocolBuffers.ProtocolParser.Stack.Push(msField);
        }