e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
28 lines
947 B
C#
28 lines
947 B
C#
//----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Channels
|
|
{
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ServiceModel;
|
|
|
|
class UniqueTransportManagerRegistration : TransportManagerRegistration
|
|
{
|
|
List<TransportManager> list;
|
|
|
|
public UniqueTransportManagerRegistration(TransportManager uniqueManager, Uri listenUri, HostNameComparisonMode hostNameComparisonMode)
|
|
: base(listenUri, hostNameComparisonMode)
|
|
{
|
|
this.list = new List<TransportManager>();
|
|
this.list.Add(uniqueManager);
|
|
}
|
|
|
|
public override IList<TransportManager> Select(TransportChannelListener channelListener)
|
|
{
|
|
return list;
|
|
}
|
|
}
|
|
}
|