Ejemplo n.º 1
0
 /// <summary>
 /// Runs multiple commands to initialize java debugging
 /// </summary>
 /// <returns></returns>
 public async Task Inititalize()
 {
     _idSizes = await IDSizes();
     _jdwp.SetIDSizes(_idSizes);
     _version = await Version();
     _classes = await AllClassesWithGeneric();
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Construct a new ReplyPacketParser from the raw bytes of the reply packet. After the ReplyPacketParser is constrcuted, 
        /// the header has already been decoded, the position of the underlying byte stream is at the beginning of the payload.
        /// Use the methods on this class to read bytes from the payload as structured data.
        /// </summary>
        /// <param name="replyBytes"></param>
        public ReplyPacketParser(byte[] replyBytes, JdwpCommand.IDSizes idSizes)
        {
            _packetReader = new BinaryReader(new MemoryStream(replyBytes));
            _IDSizes = idSizes;

            Size = this.ReadUInt32();
            Id = this.ReadUInt32();
            this.ReadByte(); //flags byte
            ErrorCode = this.ReadUInt16();

            if (ErrorCode == 0)
            {
                Succeeded = true;
            }
            else
            {
                Succeeded = false;
            }
        }
Ejemplo n.º 3
0
 public void SetIDSizes(JdwpCommand.IDSizes idSizes)
 {
     _IDSizes = idSizes;
 }