public static MemModuleLoadRequest Deserialize(Stream stream, MemModuleLoadRequest instance, long limit) { while (limit < 0L || stream.get_Position() < limit) { int num = stream.ReadByte(); if (num == -1) { if (limit >= 0L) { throw new EndOfStreamException(); } return(instance); } else { int num2 = num; if (num2 != 10) { if (num2 != 18) { if (num2 != 26) { Key key = ProtocolParser.ReadKey((byte)num, stream); uint field = key.Field; if (field == 0u) { throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream"); } ProtocolParser.SkipKey(stream, key); } else { instance.Input = ProtocolParser.ReadBytes(stream); } } else { instance.Key = ProtocolParser.ReadBytes(stream); } } else if (instance.Handle == null) { instance.Handle = ContentHandle.DeserializeLengthDelimited(stream); } else { ContentHandle.DeserializeLengthDelimited(stream, instance.Handle); } } } if (stream.get_Position() == limit) { return(instance); } throw new ProtocolBufferException("Read past max limit"); }
public static MemModuleLoadRequest Deserialize(Stream stream, MemModuleLoadRequest instance, long limit) { while (true) { if (limit < (long)0 || stream.Position < limit) { int num = stream.ReadByte(); if (num == -1) { if (limit >= (long)0) { throw new EndOfStreamException(); } break; } else if (num == 10) { if (instance.Handle != null) { ContentHandle.DeserializeLengthDelimited(stream, instance.Handle); } else { instance.Handle = ContentHandle.DeserializeLengthDelimited(stream); } } else if (num == 18) { instance.Key = ProtocolParser.ReadBytes(stream); } else if (num == 26) { instance.Input = ProtocolParser.ReadBytes(stream); } else { Key key = ProtocolParser.ReadKey((byte)num, stream); if (key.Field == 0) { throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream"); } ProtocolParser.SkipKey(stream, key); } } else { if (stream.Position != limit) { throw new ProtocolBufferException("Read past max limit"); } break; } } return(instance); }