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

Clone() public method

public Clone ( ) : NETWORK_DETECTION_RESPONSE
return NETWORK_DETECTION_RESPONSE
        public override NETWORK_DETECTION_RESPONSE Clone()
        {
            RDP_RTT_RESPONSE rttResp = new RDP_RTT_RESPONSE();
            rttResp.headerLength = this.headerLength;
            rttResp.headerTypeId = this.headerTypeId;
            rttResp.sequenceNumber = this.sequenceNumber;
            rttResp.responseType = this.responseType;

            return rttResp;
        }
RDP_RTT_RESPONSE