EndpointCollectionElement.TryAdd 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中实现时,将指定的终结点添加到配置文件中的服务终结点的集合中。
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
接收服务终结点的配置文件。
返回
如果将终结点添加到配置文件中的集合,则为 true
;否则为 false
。