// Token: 0x060023CA RID: 9162 RVA: 0x00079070 File Offset: 0x00077270
        public static Bitmap smethod_0()
        {
            IntPtr    desktopWindow = Class265.GetDesktopWindow();
            Rectangle virtualScreen = SystemInformation.VirtualScreen;

            return(Class364.smethod_4(desktopWindow, virtualScreen));
        }
        // Token: 0x060023CD RID: 9165 RVA: 0x000790CC File Offset: 0x000772CC
        public static Bitmap smethod_3(IntPtr hWnd, Rectangle rec)
        {
            Rectangle rectangle = Class410.smethod_16(hWnd);

            if (rec.Size.Height + rec.Y > rectangle.Size.Height || rec.Size.Width + rec.X > rectangle.Size.Width)
            {
                throw new ArgumentException(string.Format(Class364.string_1, rec.Size, rec.Location, rectangle.Size));
            }
            rec.X += rectangle.X;
            rec.Y += rectangle.Y;
            return(Class364.smethod_4(Class265.GetDesktopWindow(), rec));
        }
        // Token: 0x060023CC RID: 9164 RVA: 0x000790AC File Offset: 0x000772AC
        public static Bitmap smethod_2(IntPtr hWnd)
        {
            Rectangle rec = Class410.smethod_16(hWnd);

            return(Class364.smethod_4(Class265.GetDesktopWindow(), rec));
        }
        // Token: 0x060023CB RID: 9163 RVA: 0x00079090 File Offset: 0x00077290
        public static Bitmap smethod_1(Rectangle rec)
        {
            IntPtr desktopWindow = Class265.GetDesktopWindow();

            return(Class364.smethod_4(desktopWindow, rec));
        }