SendOrPostCallback 대리자
정의
메시지가 동기화 컨텍스트로 디스패치될 때 호출할 메서드를 나타냅니다.Represents a method to be called when a message is to be dispatched to a synchronization context.
public delegate void SendOrPostCallback(System::Object ^ state);
public delegate void SendOrPostCallback(object state);
type SendOrPostCallback = delegate of obj -> unit
Public Delegate Sub SendOrPostCallback(state As Object)
매개 변수
- state
- Object
대리자에 전달된 개체입니다.The object passed to the delegate.
- 상속
설명
SendOrPostCallback 메시지를 동기화 컨텍스트로 디스패치할 때 실행 하려는 콜백 메서드를 나타냅니다.SendOrPostCallback represents a callback method that you want to execute when a message is to be dispatched to a synchronization context. 콜백 메서드를 생성자에 전달 하 여 대리자를 만듭니다 SendOrPostCallback .Create the delegate by passing your callback method to the SendOrPostCallback constructor. 메서드에는 여기에 표시 된 서명이 있어야 합니다.Your method must have the signature shown here.
확장 메서드
GetMethodInfo(Delegate) |
지정된 대리자가 나타내는 메서드를 나타내는 개체를 가져옵니다.Gets an object that represents the method represented by the specified delegate. |