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

Clone() public method

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

            bwResults.timeDelta = this.timeDelta;
            bwResults.byteCount = this.byteCount;

            return bwResults;
        }
RDP_BW_RESULTS