Esempio n. 1
0
        /// <summary>
        /// Clones the <see cref="BrowserContextOptions"/>.
        /// </summary>
        /// <returns>A copy of the current <see cref="BrowserContextOptions"/>.</returns>
        public BrowserContextOptions Clone()
        {
            var copy = (BrowserContextOptions)MemberwiseClone();

            copy.Viewport = Viewport?.Clone();
            return(copy);
        }
        /// <summary>
        /// Clones the <see cref="BrowserContextOptions"/>.
        /// </summary>
        /// <returns>A copy of the current <see cref="BrowserContextOptions"/>.</returns>
        public BrowserContextOptions Clone()
        {
            var copy = (BrowserContextOptions)MemberwiseClone();

            copy.Viewport    = Viewport?.Clone();
            copy.VideoSize   = VideoSize?.Clone();
            copy.Geolocation = Geolocation?.Clone();
            return(copy);
        }