25 references to Behaviors
dotnet-svcutil-lib (25)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (6)
177
if (endpoint.
Behaviors
.Find<SecurityCredentialsManager>() == null)
179
endpoint.
Behaviors
.Add(new ClientCredentials());
186
ClientCredentials c = endpoint.
Behaviors
.Find<ClientCredentials>();
190
endpoint.
Behaviors
.Add(c);
288
ClientCredentials credentials = this.Endpoint.
Behaviors
.Find<ClientCredentials>();
608
endpoint.
Behaviors
.Add(channelBehavior);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (3)
104
foreach (IEndpointBehavior ieb in endpoint.
Behaviors
)
195
for (int i = 0; i < serviceEndpoint.
Behaviors
.Count; i++)
197
IEndpointBehavior behavior = serviceEndpoint.
Behaviors
[i];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (2)
105
_factory.Endpoint.
Behaviors
.RemoveAll<ClientCredentials>();
106
_factory.Endpoint.
Behaviors
.Add(value);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpoint.cs (3)
53
get { return this.
Behaviors
; }
230
for (int j = 0; j < this.
Behaviors
.Count; j++)
232
IEndpointBehavior ieb = this.
Behaviors
[j];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (4)
585
CallbackBehaviorAttribute attr = serviceEndpoint.
Behaviors
.Find<CallbackBehaviorAttribute>();
588
serviceEndpoint.
Behaviors
.Insert(0, new CallbackBehaviorAttribute());
599
serviceEndpoint.
Behaviors
.Insert(0, behaviorAttribute);
603
serviceEndpoint.
Behaviors
.Add(behaviorAttribute);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlEndpointConversionContext.cs (1)
62
foreach (IWsdlExportExtension extension in _endpoint.
Behaviors
.FindAll<IWsdlExportExtension>())
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (3)
117
result.Endpoint.
Behaviors
.Remove<ClientCredentials>();
120
result.Endpoint.
Behaviors
.Add(channelBehaviors[i]);
124
result.Endpoint.
Behaviors
.Add(new WSTrustFeb2005.DriverFeb2005.InteractiveInitializersRemovingBehavior());
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (3)
213
result.Endpoint.
Behaviors
.Remove<ClientCredentials>();
216
result.Endpoint.
Behaviors
.Add(channelBehaviors[i]);
220
result.Endpoint.
Behaviors
.Add(new InteractiveInitializersRemovingBehavior());