Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.RDP_RTT_REQUEST.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : NETWORK_DETECTION_REQUEST
return NETWORK_DETECTION_REQUEST
        public override NETWORK_DETECTION_REQUEST Clone()
        {
            RDP_RTT_REQUEST rttReq = new RDP_RTT_REQUEST();
            rttReq.headerLength = this.headerLength;
            rttReq.headerTypeId = this.headerTypeId;
            rttReq.requestType = this.requestType;
            rttReq.sequenceNumber = this.sequenceNumber;

            rttReq.sendTime = this.sendTime;
            return rttReq;
        }
RDP_RTT_REQUEST