System.MarshalByRefObject.MemberwiseClone C# (CSharp) Метод

MemberwiseClone() защищенный Метод

protected MemberwiseClone ( bool cloneIdentity ) : MarshalByRefObject
cloneIdentity bool
Результат MarshalByRefObject
        protected MarshalByRefObject MemberwiseClone(bool cloneIdentity)
        {
            MarshalByRefObject mbr = (MarshalByRefObject)base.MemberwiseClone();
            // set the identity on the cloned object to null
            if (!cloneIdentity)
                mbr.Identity = null;
            return mbr;
        }