ClientBase<TChannel> Constructor (String)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of the ClientBase<TChannel> class using the configuration information specified in the application configuration file by endpointConfigurationName.
Namespace: System.ServiceModel
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Protected Sub New ( _
endpointConfigurationName As String _
)
protected ClientBase(
string endpointConfigurationName
)
Parameters
- endpointConfigurationName
Type: System.String
The name of the endpoint in the application configuration file.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | The specified endpoint information is nulla null reference (Nothing in Visual Basic). |
InvalidOperationException | The endpoint cannot be found or the endpoint contract is not valid. |
Remarks
Use this constructor when there is more than one target endpoint in the application configuration file. This value is the name attribute of the client <endpoint> element.
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