The interface declares the strongly typed reliable message sender. The reliable sender can send typed messages and receive typed response messages. In addition it provides events notifying whether the message was delivered. The reliable typed message sender can be used only with the reliable typed message receiver.

Namespace: Eneter.Messaging.EndPoints.TypedMessages
Assembly: Eneter.Messaging.Framework (in Eneter.Messaging.Framework.dll) Version: 5.0.0.0 (5.0.0.0)

Syntax

C#
public interface IReliableTypedMessageSender<_ResponseType, _RequestType> : IAttachableDuplexOutputChannel
Visual Basic
Public Interface IReliableTypedMessageSender(Of _ResponseType, _RequestType) _
	Inherits IAttachableDuplexOutputChannel
Visual C++
generic<typename _ResponseType, typename _RequestType>
public interface class IReliableTypedMessageSender : IAttachableDuplexOutputChannel

Type Parameters

_ResponseType
type of the response message
_RequestType
type of the message

Version Information

.NET

Supported in: .NET 4.5, .NET 4.0, .NET 3.5

Compact Framework

Supported in: Compact Framework 3.5, Compact Framework 2.0

Mono

Supported in: Mono 2.6.4

Silverlight

Supported in: Silverlight 5, Silverlight 4, Silverlight 3

Windows Phone

Supported in: Windows Phone 7.1, Windows Phone 7

See Also