Class SendCompletedEventArgs
Provides data for the SendCompleted event.
Inheritance
System.Object
System.EventArgs
System.ComponentModel.AsyncCompletedEventArgs
SendCompletedEventArgs
Inherited Members
System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
System.ComponentModel.AsyncCompletedEventArgs.Cancelled
System.ComponentModel.AsyncCompletedEventArgs.Error
System.ComponentModel.AsyncCompletedEventArgs.UserState
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Messaging
Assembly: OpenSilver.dll
Syntax
[NotImplemented]
public sealed class SendCompletedEventArgs : AsyncCompletedEventArgs
Properties
| Improve this Doc View SourceMessage
Gets the message sent from a LocalMessageSender to a LocalMessageReceiver.
Declaration
[NotImplemented]
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String | The message that was sent. |
ReceiverDomain
Gets the domain of the LocalMessageReceiver that received the message.
Declaration
[NotImplemented]
public string ReceiverDomain { get; }
Property Value
Type | Description |
---|---|
System.String | The domain of the LocalMessageReceiver that received the message. |
ReceiverName
Gets the name of the LocalMessageReceiver that received the message.
Declaration
[NotImplemented]
public string ReceiverName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the message receiver. |
Response
Gets the response message sent to the LocalMessageSender from the LocalMessageReceiver that received the original message.
Declaration
[NotImplemented]
public string Response { get; }
Property Value
Type | Description |
---|---|
System.String | The response message sent to the sender of the original message. |