e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
//----------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Routing.Configuration
|
|
{
|
|
using System;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Description;
|
|
|
|
sealed class ClientEndpointLoader : ChannelFactory
|
|
{
|
|
ClientEndpointLoader(string configurationName)
|
|
{
|
|
base.InitializeEndpoint(configurationName, null);
|
|
base.Endpoint.Name = configurationName;
|
|
}
|
|
|
|
public static ServiceEndpoint LoadEndpoint(string configurationName)
|
|
{
|
|
using (ClientEndpointLoader loader = new ClientEndpointLoader(configurationName))
|
|
{
|
|
return loader.Endpoint;
|
|
}
|
|
}
|
|
|
|
protected override ServiceEndpoint CreateDescription()
|
|
{
|
|
ServiceEndpoint ep = new ServiceEndpoint(new ContractDescription("contract"));
|
|
ep.Contract.ConfigurationName = "*";
|
|
return ep;
|
|
}
|
|
}
|
|
}
|