Share via


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

  • success
    Type: System.Boolean

    If 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