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

Clone() public method

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

            netCharRes.baseRTT = this.baseRTT;
            netCharRes.bandwidth = this.bandwidth;
            netCharRes.averageRTT = this.averageRTT;

            return netCharRes;
        }
RDP_NETCHAR_RESULT