Esempio n. 1
0
 protected SecureClientBase(string clientCertificateName, bool overrideConfig, Binding binding, EndpointAddress remoteAddress) : base(binding, remoteAddress)
 {
     if (overrideConfig)
     {
         SecurityHelper.SecureProxy(this, clientCertificateName);
     }
 }
Esempio n. 2
0
 protected SecureClientBase(string clientCertificateName, bool overrideConfig, string endpointName) : base(endpointName)
 {
     if (overrideConfig)
     {
         SecurityHelper.SecureProxy(this, clientCertificateName);
     }
 }
Esempio n. 3
0
 protected SecureClientBase(UserNamePasswordClientCredential credentials, string endpointName) : base(endpointName)
 {
     SecurityHelper.SecureProxy(this, credentials.UserName, credentials.Password);
 }
Esempio n. 4
0
 protected SecureDuplexClientBase(string clientCertificateName, C callback) : base(callback)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
Esempio n. 5
0
 protected SecureDuplexClientBase(StoreLocation storeLocation, StoreName storeName, X509FindType findType, string clientCertificateName, C callback, string endpointName) : base(callback, endpointName)
 {
     SecurityHelper.SecureProxy(this, storeLocation, storeName, findType, clientCertificateName);
 }
Esempio n. 6
0
 protected SecureClientBase(string clientCertificateName)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
Esempio n. 7
0
 protected SecureClientBase(string userName, string password)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
Esempio n. 8
0
 protected SecureDuplexClientBase(string clientCertificateName, C callback, Binding binding, EndpointAddress remoteAddress) : base(callback, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
Esempio n. 9
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);
 }
Esempio n. 10
0
 protected SecureDuplexClientBase(string userName, string password, C callback, Binding binding, EndpointAddress remoteAddress) : base(callback, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
Esempio n. 11
0
 protected SecureDuplexClientBase(string clientCertificateName, InstanceContext <C> context, string endpointName) : base(context, endpointName)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
Esempio n. 12
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);
 }
Esempio n. 13
0
 protected SecureDuplexClientBase(string userName, string password, InstanceContext <C> context, string endpointName) : base(context, endpointName)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
Esempio n. 14
0
 protected SecureClientBase(UserNamePasswordClientCredential credentials, Binding binding, EndpointAddress remoteAddress) : base(binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, credentials.UserName, credentials.Password);
 }
Esempio n. 15
0
 protected SecureDuplexClientBase(string userName, string password, InstanceContext <C> context, Binding binding, EndpointAddress remoteAddress) : base(context, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
Esempio n. 16
0
 protected SecureClientBase(string domain, string userName, string password, TokenImpersonationLevel impersonationLevel, Binding binding, EndpointAddress remoteAddress) : base(binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, domain, userName, password, impersonationLevel);
 }
Esempio n. 17
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);
 }
Esempio n. 18
0
 protected SecureClientBase(StoreLocation storeLocation, StoreName storeName, X509FindType findType, string clientCertificateName, Binding binding, EndpointAddress remoteAddress) : base(binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, storeLocation, storeName, findType, clientCertificateName);
 }
Esempio n. 19
0
 protected SecureDuplexClientBase(string clientCertificateName, InstanceContext <C> context, Binding binding, EndpointAddress remoteAddress) : base(context, binding, remoteAddress)
 {
     SecurityHelper.SecureProxy(this, clientCertificateName);
 }
Esempio n. 20
0
 protected SecureClientBase(string domain, string userName, string password, TokenImpersonationLevel impersonationLevel)
 {
     SecurityHelper.SecureProxy(this, domain, userName, password, impersonationLevel);
 }
Esempio n. 21
0
 protected SecureDuplexClientBase(string userName, string password, C callback) : base(callback)
 {
     SecurityHelper.SecureProxy(this, userName, password);
 }
Esempio n. 22
0
 protected SecureClientBase(StoreLocation storeLocation, StoreName storeName, X509FindType findType, string clientCertificateName)
 {
     SecurityHelper.SecureProxy(this, storeLocation, storeName, findType, clientCertificateName);
 }
Esempio n. 23
0
 protected SecureDuplexClientBase(string domain, string userName, string password, TokenImpersonationLevel impersonationLevel, C callback, string endpointName) : base(callback, endpointName)
 {
     SecurityHelper.SecureProxy(this, domain, userName, password, impersonationLevel);
 }