Show / Hide Table of Contents

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 Source

Message

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source