40 references to Endpoint
dotnet-svcutil-lib (40)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (19)
34if (this.Endpoint == null) 38return EnsureCredentials(this.Endpoint); 57if (this.Endpoint != null && this.Endpoint.Binding != null) 59return this.Endpoint.Binding.CloseTimeout; 72if (this.Endpoint != null && this.Endpoint.Binding != null) 74return this.Endpoint.Binding.OpenTimeout; 149if (this.Endpoint == null) 154if (this.Endpoint.Binding == null) 166return ServiceChannelFactory.BuildChannelFactory(this.Endpoint, this.UseActiveAutoClose); 209OperationDescriptionCollection operations = this.Endpoint.Contract.Operations; 244this.Endpoint.Address = address; 272this.Endpoint.Binding = binding; 276this.Endpoint.Address = address; 286if (this.Endpoint != null) 288ClientCredentials credentials = this.Endpoint.Behaviors.Find<ClientCredentials>(); 554throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SFxCreateNonDuplexChannel1, this.Endpoint.Contract.Name))); 568return CreateChannel(this.CreateEndpointAddress(this.Endpoint), null);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
154return _channelFactory.Endpoint;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (9)
48_maxMessageSize = GetMaxMessageSize(_factory.Endpoint.Binding); 83_maxMessageSize = GetMaxMessageSize(_factory.Endpoint.Binding); 92_maxMessageSize = GetMaxMessageSize(_factory.Endpoint.Binding); 105_factory.Endpoint.Behaviors.RemoveAll<ClientCredentials>(); 106_factory.Endpoint.Behaviors.Add(value); 171BindingElementCollection bindingElementCollection = _factory.Endpoint.Binding.CreateBindingElements(); 205_maxMessageSize = GetMaxMessageSize(_factory.Endpoint.Binding); 968messageVersion = channelFactory.Endpoint.Binding.MessageVersion; 1022messageVersion = channelFactory.Endpoint.Binding.MessageVersion;
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (3)
189return CreateChannel(callbackInstance, CreateEndpointAddress(this.Endpoint), null); 230throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SFxCreateDuplexChannel1, this.Endpoint.Contract.Name))); 234Type callbackType = this.Endpoint.Contract.CallbackContractType;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (4)
115SetProtectionLevelForFederation(result.Endpoint.Contract.Operations); 117result.Endpoint.Behaviors.Remove<ClientCredentials>(); 120result.Endpoint.Behaviors.Add(channelBehaviors[i]); 124result.Endpoint.Behaviors.Add(new WSTrustFeb2005.DriverFeb2005.InteractiveInitializersRemovingBehavior());
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (4)
211SetProtectionLevelForFederation(result.Endpoint.Contract.Operations); 213result.Endpoint.Behaviors.Remove<ClientCredentials>(); 216result.Endpoint.Behaviors.Add(channelBehaviors[i]); 220result.Endpoint.Behaviors.Add(new InteractiveInitializersRemovingBehavior());