[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Actions to run after the message is sent (asynchronous, use with care).

Namespace:  Microsoft.ConfigurationManagement.Messaging.Framework
Assembly:  Microsoft.ConfigurationManagement.Messaging(in Microsoft.ConfigurationManagement.Messaging.dll)

Syntax

                 
  C#     Visual Basic     Visual C++  
public 
virtual 
void 
PostSendActions(
	

IMessageSender 
sender,
	
bool 
success
)
Public 
Overridable 
Sub 
PostSendActions ( _
	
sender 
As 

IMessageSender, _
	
success 
As 
Boolean _
)
public:
virtual 
void 
PostSendActions(
	

IMessageSender^ 
sender, 
	
bool 
success
)

Parameters

sender
IMessageSender
The sender that was used to send the message.
success
Boolean
If true, the sending was successful.

Remarks

Classes that override this method should ensure they call base.PostSendActions(...)

See Also