public byte[] ToProtoBytes() { return(OwnerInfo.SerializeToBytes(this)); }
public static void SerializeLengthDelimited(Stream stream, OwnerInfo instance) { byte[] bytes = OwnerInfo.SerializeToBytes(instance); ProtocolParser.WriteUInt32(stream, (uint)bytes.Length); stream.Write(bytes, 0, (int)bytes.Length); }