public static ObjectAddress DeserializeLengthDelimited(Stream stream, ObjectAddress instance) { long num = (long)((ulong)ProtocolParser.ReadUInt32(stream)); num += stream.get_Position(); return(ObjectAddress.Deserialize(stream, instance, num)); }
public static ObjectAddress DeserializeLengthDelimited(Stream stream, ObjectAddress instance) { long position = (long)ProtocolParser.ReadUInt32(stream); position += stream.Position; return(ObjectAddress.Deserialize(stream, instance, position)); }
public static ObjectAddress DeserializeLengthDelimited(Stream stream) { ObjectAddress objectAddress = new ObjectAddress(); ObjectAddress.DeserializeLengthDelimited(stream, objectAddress); return(objectAddress); }
public static ErrorInfo Deserialize(Stream stream, ErrorInfo instance, long limit) { while (limit < 0L || stream.Position < limit) { int num = stream.ReadByte(); if (num == -1) { if (limit >= 0L) { throw new EndOfStreamException(); } return(instance); } else if (num != 10) { if (num != 16) { if (num != 24) { if (num != 32) { 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.MethodId = ProtocolParser.ReadUInt32(stream); } } else { instance.ServiceHash = ProtocolParser.ReadUInt32(stream); } } else { instance.Status = ProtocolParser.ReadUInt32(stream); } } else if (instance.ObjectAddress == null) { instance.ObjectAddress = ObjectAddress.DeserializeLengthDelimited(stream); } else { ObjectAddress.DeserializeLengthDelimited(stream, instance.ObjectAddress); } } if (stream.Position == limit) { return(instance); } throw new ProtocolBufferException("Read past max limit"); }
public static ObjectAddress Deserialize(Stream stream, ObjectAddress instance, long limit) { instance.ObjectId = (ulong)0; 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 (num == 16) { instance.ObjectId = ProtocolParser.ReadUInt64(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 (instance.Host != null) { ProcessId.DeserializeLengthDelimited(stream, instance.Host); } else { instance.Host = ProcessId.DeserializeLengthDelimited(stream); } } else { if (stream.Position != limit) { throw new ProtocolBufferException("Read past max limit"); } break; } } return(instance); }
public static ObjectAddress Deserialize(Stream stream, ObjectAddress instance, long limit) { instance.ObjectId = 0uL; 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 != 16) { 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.ObjectId = ProtocolParser.ReadUInt64(stream); } } else if (instance.Host == null) { instance.Host = ProcessId.DeserializeLengthDelimited(stream); } else { ProcessId.DeserializeLengthDelimited(stream, instance.Host); } } } if (stream.get_Position() == limit) { return(instance); } throw new ProtocolBufferException("Read past max limit"); }
public static void Serialize(Stream stream, ObjectAddress instance) { if (instance.Host == null) { throw new ArgumentNullException("Host", "Required by proto specification."); } stream.WriteByte(10); ProtocolParser.WriteUInt32(stream, instance.Host.GetSerializedSize()); ProcessId.Serialize(stream, instance.Host); if (instance.HasObjectId) { stream.WriteByte(16); ProtocolParser.WriteUInt64(stream, instance.ObjectId); } }
public static void Serialize(Stream stream, ErrorInfo instance) { if (instance.ObjectAddress == null) { throw new ArgumentNullException("ObjectAddress", "Required by proto specification."); } stream.WriteByte(10); ProtocolParser.WriteUInt32(stream, instance.ObjectAddress.GetSerializedSize()); ObjectAddress.Serialize(stream, instance.ObjectAddress); stream.WriteByte(16); ProtocolParser.WriteUInt32(stream, instance.Status); stream.WriteByte(24); ProtocolParser.WriteUInt32(stream, instance.ServiceHash); stream.WriteByte(32); ProtocolParser.WriteUInt32(stream, instance.MethodId); }
public override bool Equals(object obj) { ObjectAddress objectAddress = obj as ObjectAddress; if (objectAddress == null) { return(false); } if (!this.Host.Equals(objectAddress.Host)) { return(false); } if (this.HasObjectId == objectAddress.HasObjectId && (!this.HasObjectId || this.ObjectId.Equals(objectAddress.ObjectId))) { return(true); } return(false); }
public void SetObjectAddress(ObjectAddress val) { this.ObjectAddress = val; }
public static ObjectAddress Deserialize(Stream stream, ObjectAddress instance) { return(ObjectAddress.Deserialize(stream, instance, -1L)); }
public void Deserialize(Stream stream) { ObjectAddress.Deserialize(stream, this); }
public override bool Equals(object obj) { ObjectAddress objectAddress = obj as ObjectAddress; return(objectAddress != null && this.Host.Equals(objectAddress.Host) && this.HasObjectId == objectAddress.HasObjectId && (!this.HasObjectId || this.ObjectId.Equals(objectAddress.ObjectId))); }