| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //------------------------------------------------------------
- namespace System.ServiceModel
- {
- using System.ServiceModel.Channels;
- using System.ServiceModel.Description;
- public abstract class DuplexClientBase<TChannel> : ClientBase<TChannel>
- where TChannel : class
- {
- // IMPORTANT: any changes to the set of protected .ctors of this class need to be reflected
- // in ServiceContractGenerator.cs as well.
- protected DuplexClientBase(object callbackInstance)
- : this(new InstanceContext(callbackInstance))
- {
- }
- protected DuplexClientBase(object callbackInstance, string endpointConfigurationName)
- : this(new InstanceContext(callbackInstance), endpointConfigurationName)
- {
- }
- protected DuplexClientBase(object callbackInstance, string endpointConfigurationName, string remoteAddress)
- : this(new InstanceContext(callbackInstance), endpointConfigurationName, remoteAddress)
- {
- }
- protected DuplexClientBase(object callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress)
- : this(new InstanceContext(callbackInstance), endpointConfigurationName, remoteAddress)
- {
- }
- protected DuplexClientBase(object callbackInstance, Binding binding, EndpointAddress remoteAddress)
- : this(new InstanceContext(callbackInstance), binding, remoteAddress)
- {
- }
- protected DuplexClientBase(object callbackInstance, ServiceEndpoint endpoint)
- : this(new InstanceContext(callbackInstance), endpoint)
- {
- }
- protected DuplexClientBase(InstanceContext callbackInstance)
- : base(callbackInstance)
- {
- }
- protected DuplexClientBase(InstanceContext callbackInstance, string endpointConfigurationName)
- : base(callbackInstance, endpointConfigurationName)
- {
- }
- protected DuplexClientBase(InstanceContext callbackInstance, string endpointConfigurationName, string remoteAddress)
- : base(callbackInstance, endpointConfigurationName, remoteAddress)
- {
- }
- protected DuplexClientBase(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress)
- : base(callbackInstance, endpointConfigurationName, remoteAddress)
- {
- }
- protected DuplexClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress)
- : base(callbackInstance, binding, remoteAddress)
- {
- }
- protected DuplexClientBase(InstanceContext callbackInstance, ServiceEndpoint endpoint)
- : base(callbackInstance, endpoint)
- {
- }
- public IDuplexContextChannel InnerDuplexChannel
- {
- get
- {
- return (IDuplexContextChannel)InnerChannel;
- }
- }
- }
- }
|