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

Clone() public method

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

            netCharSync.bandwidth = this.bandwidth;
            netCharSync.rtt = this.rtt;

            return netCharSync;
        }
RDP_NETCHAR_SYNC