public void ReplaceAt(UInt32 tag, WireType wireType, IReader reader, bool shouldNotify) { switch (tag) { case 0: this.UpdateAndNotify(0, Raw.Deserialize(reader, this.Path.GetNested(0)), shouldNotify); break; case 1: this.UpdateAndNotify(1, Attack.Deserialize(reader, this.Path.GetNested(1)), shouldNotify); break; default: reader.SkipToEnd(); break; } }
public void ReplaceAt(UInt16 tag, WireType wireType, Reader reader, bool shouldNotify) { reader = !reader.Eof() ? reader : new Reader(new byte[] {}); switch (tag) { case 0: this.NotifyAndUpdate(0, Raw.Deserialize(reader, this.Path.Nested(0)), shouldNotify); break; case 1: this.NotifyAndUpdate(1, Attack.Deserialize(reader, this.Path.Nested(1)), shouldNotify); break; default: reader.Exhaust(); break; } }