ClientBase<TChannel>.ChannelBase<T>.IOutputChannel.Send Method (Message)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Transmits a message to the destination of the output channel.
Namespace: System.ServiceModel
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Private Sub Send ( _
message As Message _
) Implements IOutputChannel.Send
void IOutputChannel.Send(
Message message
)
Parameters
- message
Type: System.ServiceModel.Channels.Message
The Message being sent on the output channel.
Implements
Remarks
The destination for messages sent out on an output channel is specified at channel creation time.
The Send() method does not guarantee the delivery of message to the remote endpoint. An implementation of IOutputChannel can silently drop messages for a variety of reasons. There might be no more buffer room, for example. If delivery guarantees are required, use IOutputSessionChannel.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also