Dispatches an asynchronous message to a synchronization context.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic override void Post(
SendOrPostCallback d,
Object state
)
Public Overrides Sub Post (
d As SendOrPostCallback,
state As Object
)
public:
virtual void Post(
SendOrPostCallback^ d,
Object^ state
) override
Parameters
- d SendOrPostCallback
- The SendOrPostCallback delegate to call.
- state Object
- The object passed to the delegate.
Remarks
The Post method starts an asynchronous request to post a message.
See Also