4 writes to SubProtocol
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
161
httpTransport.WebSocketSettings.
SubProtocol
= WebSocketTransportSettings.SoapSubProtocol;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportSettings.cs (1)
37
this.
SubProtocol
= settings.SubProtocol;
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
279
this.WebSocketSettings.
SubProtocol
= WebSocketTransportSettings.SoapSubProtocol;
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (1)
142
InternalWebSocketSettings.
SubProtocol
= WebSocketTransportSettings.SoapSubProtocol;
8 references to SubProtocol
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
239
string requested = WebSocketSettings.
SubProtocol
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CoreClrClientWebSocketFactory.cs (2)
21
if (!string.IsNullOrEmpty(settings.
SubProtocol
))
23
webSocket.Options.AddSubProtocol(settings.
SubProtocol
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportSettings.cs (5)
37
this.SubProtocol = settings.
SubProtocol
;
141
&& StringComparer.OrdinalIgnoreCase.Compare(this.
SubProtocol
, other.
SubProtocol
) == 0;
159
if (this.
SubProtocol
!= null)
161
hashcode ^= this.
SubProtocol
.ToLowerInvariant().GetHashCode();