Message.PostSendActions Method (IMessageSender, Boolean)
Actions that run after a message is sent. This is an asynchronous action; use with caution.
Namespace: Microsoft.ConfigurationManagement.Messaging.Framework
Assembly: Microsoft.ConfigurationManagement.Messaging (in Microsoft.ConfigurationManagement.Messaging.dll)
Syntax
public virtual void PostSendActions(
IMessageSender sender,
bool success
)
public:
virtual void PostSendActions(
IMessageSender^ sender,
bool success
)
Public Overridable Sub PostSendActions (
sender As IMessageSender,
success As Boolean
)
Parameters
sender
Type: Microsoft.ConfigurationManagement.Messaging.Framework.IMessageSenderThe sender that was used to send the message.
success
Type: System.BooleanIf true, the message was successfully sent.
Remarks
Classes that override this method should call base.PostSendActions(...)
See Also
Message Class
Microsoft.ConfigurationManagement.Messaging.Framework Namespace
Return to top