5 implementations of IEndpointBehavior
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\CallbackBehaviorAttribute.cs (1)
12
public sealed class CallbackBehaviorAttribute : Attribute,
IEndpointBehavior
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ClientCredentials.cs (1)
12
public class ClientCredentials : SecurityCredentialsManager,
IEndpointBehavior
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
263
internal class BindingInformationEndpointBehavior :
IEndpointBehavior
322
internal class SecurityContractInformationEndpointBehavior :
IEndpointBehavior
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
235
public class InteractiveInitializersRemovingBehavior :
IEndpointBehavior
21 references to IEndpointBehavior
dotnet-svcutil-lib (21)
FrameworkFork\System.ServiceModel\System\ServiceModel\CallbackBehaviorAttribute.cs (4)
31
void
IEndpointBehavior
.Validate(ServiceEndpoint serviceEndpoint)
35
void
IEndpointBehavior
.AddBindingParameters(ServiceEndpoint serviceEndpoint, BindingParameterCollection parameters)
39
void
IEndpointBehavior
.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime clientRuntime)
58
void
IEndpointBehavior
.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (2)
605
IEndpointBehavior
channelBehavior = implementation as
IEndpointBehavior
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ClientCredentials.cs (3)
136
void
IEndpointBehavior
.Validate(ServiceEndpoint serviceEndpoint)
140
void
IEndpointBehavior
.AddBindingParameters(ServiceEndpoint serviceEndpoint, BindingParameterCollection bindingParameters)
155
void
IEndpointBehavior
.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
104
foreach (
IEndpointBehavior
ieb in endpoint.Behaviors)
197
IEndpointBehavior
behavior = serviceEndpoint.Behaviors[i];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpoint.cs (5)
23
private KeyedByTypeCollection<
IEndpointBehavior
> _behaviors;
51
public KeyedCollection<Type,
IEndpointBehavior
> EndpointBehaviors
57
public KeyedByTypeCollection<
IEndpointBehavior
> Behaviors
63
_behaviors = new KeyedByTypeCollection<
IEndpointBehavior
>();
232
IEndpointBehavior
ieb = this.Behaviors[j];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (2)
595
foreach (
IEndpointBehavior
behaviorAttribute in ServiceReflector.GetCustomAttributes(implementationType, typeof(
IEndpointBehavior
), false))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TrustDriver.cs (1)
155
public abstract IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<
IEndpointBehavior
> channelBehaviors);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
109
public override IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<
IEndpointBehavior
> channelBehaviors)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
205
public override IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<
IEndpointBehavior
> channelBehaviors)