15 references to Behaviors
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
613endpoint.Contract.Behaviors.Add(contractBehavior);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ContractDescription.cs (1)
143get { return this.Behaviors; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (3)
100foreach (IContractBehavior icb in endpoint.Contract.Behaviors) 188for (int i = 0; i < contractDescription.Behaviors.Count; i++) 190IContractBehavior behavior = contractDescription.Behaviors[i];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (1)
566foreach (IContractBehavior behavior in contract.Behaviors)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpoint.cs (2)
221for (int j = 0; j < contract.Behaviors.Count; j++) 223IContractBehavior iContractBehavior = contract.Behaviors[j];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (5)
82contractDescription.Behaviors.Add((IContractBehavior)serviceImplementation); 224contractDesc.Behaviors.Add(new OperationSelectorBehavior()); 274AddBehaviorsAtOneScope<IContractBehavior, KeyedByTypeCollection<IContractBehavior>>(targetInterface, contractDesc.Behaviors, 318serviceType, description.Behaviors, 608serviceEndpoint.Contract.Behaviors.Add(behaviorAttribute);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlContractConversionContext.cs (1)
51foreach (IWsdlExportExtension extension in _contract.Behaviors.FindAll<IWsdlExportExtension>())
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlEndpointConversionContext.cs (1)
72foreach (IWsdlExportExtension extension in _endpoint.Contract.Behaviors.FindAll<IWsdlExportExtension>())