NitroDebugger.RSP.Presentation.ReceiveReply C# (CSharp) 메소드

ReceiveReply() 공개 메소드

public ReceiveReply ( ) : ReplyPacket
리턴 ReplyPacket
        public ReplyPacket ReceiveReply()
        {
            ReplyPacket response = null;
            int count = 0;

            do {
                if (count == MaxWriteAttemps)
                    throw new ProtocolViolationException("[PRES] Can not receive correctly");
                count++;

                response = this.NextReply();
            } while (response == null);

            return response;
        }