Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.RdpbcgrServerDecoder.ParseTsShutdownReuqestPdu C# (CSharp) Method

ParseTsShutdownReuqestPdu() private method

Parse TS_SHUTDOWN_REQ_PDU (parser index is updated according to parsed length)
private ParseTsShutdownReuqestPdu ( byte data, int &currentIndex ) : TS_SHUTDOWN_REQ_PDU
data byte data to be parsed
currentIndex int current parser index
return TS_SHUTDOWN_REQ_PDU
        private TS_SHUTDOWN_REQ_PDU ParseTsShutdownReuqestPdu(byte[] data, ref int currentIndex)
        {
            TS_SHUTDOWN_REQ_PDU pdu = new TS_SHUTDOWN_REQ_PDU();
            pdu.shareDataHeader = ParseTsShareDataHeader(data, ref currentIndex);

            return pdu;
        }
RdpbcgrServerDecoder