AirTabInputServer.CloseHandler.SetCloseHandler C# (CSharp) 메소드

SetCloseHandler() 공개 정적인 메소드

public static SetCloseHandler ( System.Action handler ) : void
handler System.Action
리턴 void
        public static void SetCloseHandler(Action handler)
        {
            SetConsoleCtrlHandler(new HandlerRoutine(ConsoleCtrlCheck), true);
            s_handler = handler;
        }