-2

应该用什么代替??? (第一个参数)

serviceHost = new ServiceHost(typeof(MyService));    
serviceHost.SetEndpointAddress(???, "http://cvxcvxcvcx");

我在配置文件中指定了端点,我该怎么做才能召回他?我可以在这个功能中召回他吗?

4

1 回答 1

1

取自 MSDN

ServiceHostBase.SetEndpointAddress 方法 将指定端点的端点地址设置为指定地址。

public void SetEndpointAddress(ServiceEndpoint endpoint, string relativeAddress)

参数

endpoint
类型:System.ServiceModel.Description.ServiceEndpoint
服务端点。

relativeAddress
类型:System.String
端点地址。

为了更好地理解你应该阅读它WSDL-first approach: How to specify different names for wsdl:port and wsdl:binding?

于 2012-05-20T20:33:24.613 回答