3 types derived from Binding
System.ServiceModel.NetNamedPipe (1)
System\ServiceModel\NetNamedPipeBinding.cs (1)
13public class NetNamedPipeBinding : Binding
System.ServiceModel.Primitives (1)
netstandard.cs (1)
1420public partial class CustomBinding : System.ServiceModel.Channels.Binding
System.ServiceModel.UnixDomainSocket (1)
System\ServiceModel\UnixDomainSocketBinding.cs (1)
10public class UnixDomainSocketBinding : Binding
56 references to Binding
Binding.Http.IntegrationTests (1)
MtomBindingTestHelper.cs (1)
65public static Binding CreateMtomClientBinding()
Client.TypedClient.IntegrationTests (3)
TypedProxyTests.4.0.0.cs (3)
448private static void ServiceContract_TypedProxy_AsyncBeginEnd_Call_TestImpl(Binding binding, string endpoint, string testName) 495private static void ServiceContract_TypedProxy_AsyncBeginEnd_Call_WithNoCallback_TestImpl(Binding binding, string endpoint, string testName) 536private static void ServiceContract_TypedProxy_AsyncTask_Call_TestImpl(Binding binding, string endpoint, string testName)
Contract.Message.IntegrationTests (1)
MessageTests.4.0.0.cs (1)
66Binding binding = null;
Encoding.Encoders.IntegrationTests (2)
TextEncodingTests.4.1.0.cs (2)
21Binding binding = null; 54Binding binding = null;
ScenarioTests.Common.Tests (6)
ScenarioTestHelpers.cs (2)
59public static bool RunBasicEchoTest(Binding binding, string address, string variation, Action<ChannelFactory> factorySettings = null) 96public static bool RunComplexEchoTest(Binding binding, string address, string variation, StringBuilder errorBuilder, Action<ChannelFactory> factorySettings = null)
ScenarioTestTypes.cs (4)
821public MyClientBase(Binding binding, EndpointAddress endpointAddress) 835public MyClientBase(Binding binding, EndpointAddress endpointAddress) 849public MyClientBaseWithChannelBase(Binding binding, EndpointAddress endpointAddress) 913public MyDuplexClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress)
System.ServiceModel (1)
netstandard.cs (1)
33[assembly: TypeForwardedTo(typeof(Binding))]
System.ServiceModel.Federation (6)
System\ServiceModel\Federation\WSTrustChannelFactory.cs (3)
28/// Initializes a new instance of a <see cref="WSTrustChannelFactory" /> specifying the <see cref="Binding"/> and <see cref="EndpointAddress"/>. 30/// <param name="binding">The <see cref="Binding" /> used by channels created by the factory.</param> 32public WSTrustChannelFactory(Binding binding, EndpointAddress endpointAddress)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
332internal Binding IssuerBinding
System\ServiceModel\Federation\WsTrustTokenParameters.cs (2)
181public static WSTrustTokenParameters CreateWSFederationTokenParameters(Binding issuerBinding, EndpointAddress issuerAddress) 196public static WSTrustTokenParameters CreateWS2007FederationTokenParameters(Binding issuerBinding, EndpointAddress issuerAddress)
System.ServiceModel.Primitives (16)
netstandard.cs (16)
441protected void InitializeEndpoint(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress address) { } 456public ChannelFactory(System.ServiceModel.Channels.Binding binding) { } 457public ChannelFactory(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) { } 475protected ClientBase(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) { } 1159public DuplexChannelFactory(Type callbackInstanceType, System.ServiceModel.Channels.Binding binding) : base(default(System.Type)) { } 1160public DuplexChannelFactory(Type callbackInstanceType, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(default(System.Type)) { } 1161public DuplexChannelFactory(Type callbackInstanceType, System.ServiceModel.Channels.Binding binding, string remoteAddress) : base(default(System.Type)) { } 1163public DuplexChannelFactory(System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.Channels.Binding binding) : base(default(System.Type)) { } 1164public DuplexChannelFactory(System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(default(System.Type)) { } 1165public DuplexChannelFactory(System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.Channels.Binding binding, string remoteAddress) : base(default(System.Type)) { } 1174protected DuplexClientBase(System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) { } 1424public CustomBinding(System.ServiceModel.Channels.Binding binding) { } 2107public ServiceEndpoint(System.ServiceModel.Description.ContractDescription contract, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress address) { } 2109public System.ServiceModel.Channels.Binding Binding { get { return default; } set { } } 2477public Channels.Binding IssuerBinding { get { return default; } set { } } 2504public System.ServiceModel.Channels.Binding IssuerBinding { get { return default; } set { } }
System.ServiceModel.Primitives.Tests (17)
ServiceModel\ClientBaseTest.cs (3)
211public MyClientBase(Binding binding, EndpointAddress endpointAddress) 232public MyClientBase2(Binding binding, EndpointAddress endpointAddress) 245public MyClientBase3(Binding binding, EndpointAddress endpointAddress)
ServiceModel\DuplexChannelFactoryTest.cs (9)
45Binding binding = new NetTcpBinding(); 57Binding binding = new NetTcpBinding(); 100Binding binding = new BasicHttpBinding(BasicHttpSecurityMode.None); 118Binding binding = new NetTcpBinding(); 130Binding binding = new NetTcpBinding(); 144Binding binding = new NetTcpBinding(); 155Binding binding = new NetTcpBinding(); 190Binding binding = new NetTcpBinding(SecurityMode.None); 201Binding binding = new NetHttpBinding(BasicHttpSecurityMode.None);
ServiceModel\DuplexClientBaseTest.cs (5)
19Binding binding = new NetTcpBinding(); 33Binding binding = new NetTcpBinding(); 45Binding binding = new NetTcpBinding(); 62Binding binding = new NetTcpBinding(); 70Binding binding = new NetTcpBinding();
UnitTests.Common (3)
TestHelpers.cs (3)
50public MyClientBase(Binding binding, EndpointAddress endpointAddress) 59public MyClientBase(Binding binding, EndpointAddress endpointAddress) 68public MyDuplexClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress)