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

Clone() public method

Create an instance of the class that is identical to the current PDU.
public Clone ( ) : SlowPathPduCommonHeader
return SlowPathPduCommonHeader
        public SlowPathPduCommonHeader Clone()
        {
            SlowPathPduCommonHeader cloneHeader = this;
            if (securityHeader != null)
            {
                cloneHeader.securityHeader = securityHeader.Clone();
            }

            return cloneHeader;
        }
SlowPathPduCommonHeader