PosixSignalRegistration.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
가 handler
발생할 때 호출되는 을 signal
등록합니다.
public:
static System::Runtime::InteropServices::PosixSignalRegistration ^ Create(System::Runtime::InteropServices::PosixSignal signal, Action<System::Runtime::InteropServices::PosixSignalContext ^> ^ handler);
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public static System.Runtime.InteropServices.PosixSignalRegistration Create (System.Runtime.InteropServices.PosixSignal signal, Action<System.Runtime.InteropServices.PosixSignalContext> handler);
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
static member Create : System.Runtime.InteropServices.PosixSignal * Action<System.Runtime.InteropServices.PosixSignalContext> -> System.Runtime.InteropServices.PosixSignalRegistration
Public Shared Function Create (signal As PosixSignal, handler As Action(Of PosixSignalContext)) As PosixSignalRegistration
매개 변수
- signal
- PosixSignal
등록할 신호입니다.
- handler
- Action<PosixSignalContext>
호출되는 처리기입니다.
반환
PosixSignalRegistration 처리기를 등록 취소하기 위해 삭제할 수 있는 인스턴스입니다.
- 특성
예외
handler
은 null
입니다.
signal
는 플랫폼에서 지원되지 않습니다.
신호 처리를 설정하는 동안 또는 지정된 신호에 대한 처리기를 설치하는 동안 오류가 발생했습니다.
설명
원시 값은 signal
Unix에서 로 캐스팅하여 에 제공할 수 있습니다 PosixSignal.
신호의 기본 처리는 를 통해 Cancel취소할 수 있습니다.
SIGINT 및 SIGQUIT 는 Windows 및 Unix 플랫폼에서 SIGTERM 모두 취소할 수 있으며 Unix에서만 취소할 수 있습니다.
Unix에서 및 SIGCONT에 대해 SIGCHLD 터미널 구성을 취소할 수 있습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET