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