共用方式為


MessageSenderEventArgs.Message Property

 

Gets the message for the event. This instance can be changed by the recipient and the callee of the method will receive the changed instance.

If the message is being delivered, the modified message will be delivered to the endpoint and the local variable parameter will be changed.

If the message is being received, the modified message will be delivered to the callee with the modified data.

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

Syntax

public IMessage Message { get; private set; }
public:
property IMessage^ Message {
    IMessage^ get();
    private: void set(IMessage^ value);
}
Public Property Message As IMessage
    Get
    Private Set
End Property

Property Value

Type: Microsoft.ConfigurationManagement.Messaging.Framework.IMessage

See Also

MessageSenderEventArgs Class
Microsoft.ConfigurationManagement.Messaging.Framework Namespace

Return to top