2 instantiations of WebSocketTransportSettings
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDefaults.cs (1)
291
return new
WebSocketTransportSettings
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportSettings.cs (1)
169
return new
WebSocketTransportSettings
(this);
33 references to WebSocketTransportSettings
dotnet-svcutil-lib (33)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketFactory.cs (1)
23
public abstract Task<WebSocket> CreateWebSocketAsync(Uri address, WebHeaderCollection headers, ICredentials credentials,
WebSocketTransportSettings
settings, TimeoutHelper timeoutHelper);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (2)
208
headers[
WebSocketTransportSettings
.SoapContentTypeHeader] = _channelFactory.WebSocketSoapContentType;
211
headers[
WebSocketTransportSettings
.BinaryEncoderTransferModeHeader] = _channelFactory.TransferMode.ToString();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CoreClrClientWebSocketFactory.cs (1)
17
WebSocketTransportSettings
settings, TimeoutHelper timeoutHelper)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (6)
47
private
WebSocketTransportSettings
_webSocketSettings;
168
public
WebSocketTransportSettings
WebSocketSettings
446
WebSocketTransportSettings
.TransportUsageMethodName,
447
typeof(
WebSocketTransportSettings
).Name,
458
WebSocketTransportSettings
.TransportUsageMethodName,
459
typeof(
WebSocketTransportSettings
).Name,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (2)
34
private
WebSocketTransportSettings
_webSocketSettings;
335
public
WebSocketTransportSettings
WebSocketSettings
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
161
httpTransport.WebSocketSettings.SubProtocol =
WebSocketTransportSettings
.SoapSubProtocol;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDefaults.cs (1)
289
public static
WebSocketTransportSettings
GetDefaultWebSocketTransportSettings()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketHelper.cs (3)
105
internal static
WebSocketTransportSettings
GetRuntimeWebSocketSettings(
WebSocketTransportSettings
settings)
107
WebSocketTransportSettings
runtimeSettings = settings.Clone();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (4)
17
private readonly
WebSocketTransportSettings
_webSocketSettings;
55
protected
WebSocketTransportSettings
WebSocketSettings
862
message.Headers.Action =
WebSocketTransportSettings
.BinaryMessageReceivedAction;
868
message.Headers.Action =
WebSocketTransportSettings
.TextMessageReceivedAction;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportSettings.cs (6)
11
public sealed class WebSocketTransportSettings : IEquatable<
WebSocketTransportSettings
>
33
private WebSocketTransportSettings(
WebSocketTransportSettings
settings)
132
public bool Equals(
WebSocketTransportSettings
other)
151
WebSocketTransportSettings
settings = obj as
WebSocketTransportSettings
;
167
internal
WebSocketTransportSettings
Clone()
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (1)
17
internal const string SessionOpenedAction = Channels.
WebSocketTransportSettings
.ConnectionOpenedAction;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (1)
206
internal
WebSocketTransportSettings
InternalWebSocketSettings
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (2)
96
public
WebSocketTransportSettings
WebSocketSettings
279
this.WebSocketSettings.SubProtocol =
WebSocketTransportSettings
.SoapSubProtocol;
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (2)
61
public
WebSocketTransportSettings
WebSocketSettings
142
InternalWebSocketSettings.SubProtocol =
WebSocketTransportSettings
.SoapSubProtocol;