IRequestChannel.RemoteAddress Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the remote address to which the request channel sends messages.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Property Value
Type: System.ServiceModel.EndpointAddressThe EndpointAddress to which the request channel sends messages.
The EndpointAddress serves as both the ultimate destination and the physical address if a Via is not specified. If the Via is specified, then that is the actual physical address to which the message is sent and through which the message must go to arrive at its destination.
The following code illustrates how to implement this property:
// Initialize request channel factory with a binding and a remote endpoint address. BasicHttpBinding binding = new BasicHttpBinding(); EndpointAddress address = new EndpointAddress("http://localhost:8000/ChannelApp"); ChannelFactory<IRequestChannel> factory = new ChannelFactory<IRequestChannel>(binding, address); // Create an IRequestChannel object and open it. IRequestChannel channel = factory.CreateChannel(); channel.Open(); // Get the endpoint address for the channel. EndpointAddress epa = channel.RemoteAddress; // Get the transport address for the channel. Uri via = channel.Via; // Send a request message on the channel. Message request = Message.CreateMessage(MessageVersion.Soap11, "hello"); // Request sent and correlated with a reply message. Message reply = channel.Request(request); reply.Close(); channel.Close(); factory.Close();