EndpointCollectionElement.TryAdd 方法

定义

在派生类中实现时,将指定的终结点添加到配置文件中的服务终结点的集合中。

protected public:
 abstract bool TryAdd(System::String ^ name, System::ServiceModel::Description::ServiceEndpoint ^ endpoint, System::Configuration::Configuration ^ config);
protected internal abstract bool TryAdd (string name, System.ServiceModel.Description.ServiceEndpoint endpoint, System.Configuration.Configuration config);
abstract member TryAdd : string * System.ServiceModel.Description.ServiceEndpoint * System.Configuration.Configuration -> bool
Protected Friend MustOverride Function TryAdd (name As String, endpoint As ServiceEndpoint, config As Configuration) As Boolean

参数

name
String

包含此终结点集合的服务终结点的名称。

endpoint
ServiceEndpoint

要添加到集合的服务终结点元素。

config
Configuration

接收服务终结点的配置文件。

返回

Boolean

如果将终结点添加到配置文件中的集合,则为 true;否则为 false

适用于