// Token: 0x060029A3 RID: 10659 RVA: 0x0001336E File Offset: 0x0001156E public static void smethod_10(IntPtr hWnd, Keys Key, WaitHandle[] waitHandle, int delay) { Class465.smethod_13(hWnd, Key); if (delay > 0) { WaitHandle.WaitAny(waitHandle, delay); } Class465.smethod_14(hWnd, Key); }
// Token: 0x060029A5 RID: 10661 RVA: 0x000133BE File Offset: 0x000115BE public static void smethod_12(IntPtr hWnd, Keys Key, ManualResetEventSlim reset, TimeSpan delay) { if (!reset.IsSet) { Class465.smethod_13(hWnd, Key); } if (!reset.IsSet && delay > TimeSpan.Zero) { reset.Wait(delay); } if (!reset.IsSet) { Class465.smethod_14(hWnd, Key); } }
// Token: 0x060029A4 RID: 10660 RVA: 0x0001338A File Offset: 0x0001158A public static void smethod_11(IntPtr hWnd, Keys Key, ManualResetEventSlim reset, int delay) { if (!reset.IsSet) { Class465.smethod_13(hWnd, Key); } if (!reset.IsSet && delay > 0) { reset.Wait(delay); } if (!reset.IsSet) { Class465.smethod_14(hWnd, Key); } }
// Token: 0x060029A2 RID: 10658 RVA: 0x0001335E File Offset: 0x0001155E public static void smethod_9(IntPtr hWnd, Keys Key) { Class465.smethod_13(hWnd, Key); Class465.smethod_14(hWnd, Key); }