.NET Framework Class Library
ChannelFactory<(Of <(TChannel>)>)..::.CreateChannel Method

Creates a channel of a specified type to a specified endpoint address.

Namespace:  System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
Syntax

Visual Basic (Declaration)
Public Function CreateChannel As TChannel
Visual Basic (Usage)
Dim instance As ChannelFactory
Dim returnValue As TChannel

returnValue = instance.CreateChannel()
C#
public TChannel CreateChannel()
Visual C++
public:
TChannel CreateChannel()
JScript
public function CreateChannel() : TChannel

Return Value

Type: TChannel
The TChannel of type IChannel created by the factory.
Remarks

Creates a channel of type TChannel, the generic parameter for the class.

Examples

C#
IChannelFactory<IRequestChannel> factory = binding.BuildChannelFactory<IRequestChannel>(bindingParams);
factory.Open();
EndpointAddress address = new EndpointAddress("http://localhost:8000/ChannelApp");
IRequestChannel channel = factory.CreateChannel(address);
channel.Open();
.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Tags :


Page view tracker