예제 #1
0
 protected SecureDuplexClientBase(StoreLocation storeLocation, StoreName storeName, X509FindType findType, string clientCertificateName, C callback) : base(callback)
 {
     SecurityHelper.SecureProxy(this, storeLocation, storeName, findType, clientCertificateName);
 }
예제 #2
0
 protected SecureDuplexClientBase(string domain, string userName, string password, TokenImpersonationLevel impersonationLevel, C callback) : base(callback)
 {
     SecurityHelper.SecureProxy(this, domain, userName, password, impersonationLevel);
 }
예제 #3
0
 protected SecureDuplexClientBase(string clientCertificateName, C callback) : base(callback)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
예제 #4
0
 protected SecureDuplexClientBase(StoreLocation storeLocation, StoreName storeName, X509FindType findType, string clientCertificateName, InstanceContext <C> context, Binding binding, EndpointAddress remoteAddress) : base(context, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, storeLocation, storeName, findType, clientCertificateName);
 }
예제 #5
0
 protected SecureDuplexClientBase(string userName, string password, C callback) : base(callback)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
예제 #6
0
 protected SecureDuplexClientBase(string domain, string userName, string password, TokenImpersonationLevel impersonationLevel, InstanceContext <C> context, Binding binding, EndpointAddress remoteAddress) : base(context, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, domain, userName, password, impersonationLevel);
 }
예제 #7
0
 protected SecureDuplexClientBase(string clientCertificateName, InstanceContext <C> context, Binding binding, EndpointAddress remoteAddress) : base(context, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
예제 #8
0
 protected SecureDuplexClientBase(string clientCertificateName, C callback, Binding binding, EndpointAddress remoteAddress) : base(callback, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
예제 #9
0
 protected SecureDuplexClientBase(string userName, string password, InstanceContext <C> context, Binding binding, EndpointAddress remoteAddress) : base(context, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
예제 #10
0
 protected SecureDuplexClientBase(string userName, string password, C callback, Binding binding, EndpointAddress remoteAddress) : base(callback, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
예제 #11
0
 protected SecureDuplexClientBase(StoreLocation storeLocation, StoreName storeName, X509FindType findType, string clientCertificateName, InstanceContext <C> context, string endpointName) : base(context, endpointName)
 {
     SecurityHelper.SecureProxy(this, storeLocation, storeName, findType, clientCertificateName);
 }
예제 #12
0
 protected SecureDuplexClientBase(string clientCertificateName, InstanceContext <C> context, string endpointName) : base(context, endpointName)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
예제 #13
0
 protected SecureDuplexClientBase(string domain, string userName, string password, TokenImpersonationLevel impersonationLevel, InstanceContext <C> context, string endpointName) : base(context, endpointName)
 {
     SecurityHelper.SecureProxy(this, domain, userName, password, impersonationLevel);
 }
예제 #14
0
 protected SecureDuplexClientBase(string userName, string password, InstanceContext <C> context, string endpointName) : base(context, endpointName)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }