public ServiceEndpoint AddServiceEndpoint(IWcfEndpoint endpoint)
			{
				endpoint.Accept(this);
				return serviceEndpoint;				
			}
Exemplo n.º 2
0
 protected ChannelCreator GetEndpointChannelCreator(IWcfEndpoint endpoint, Type contract)
 {
     this.contract = contract ?? endpoint.Contract;
     endpoint.Accept(this);
     return(channelCreator);
 }
		protected ChannelCreator GetEndpointChannelCreator(IWcfEndpoint endpoint, Type contract)
		{
			this.contract = contract ?? endpoint.Contract;
			endpoint.Accept(this);
			return channelCreator;
		}
 public ServiceEndpoint AddServiceEndpoint(IWcfEndpoint endpoint)
 {
     endpoint.Accept(this);
     return(serviceEndpoint);
 }