Esempio n. 1
0
 private XmlRpcHttpSecurity(XmlRpcHttpSecurityMode mode, HttpClientCredentialType clientCredentialType, HttpProxyCredentialType proxyCredentialType, string realm)
 {
     this.Mode = mode;
     this.ClientCredentialType = clientCredentialType;
     this.ProxyCredentialType  = proxyCredentialType;
     this.Realm = realm;
 }
Esempio n. 2
0
 public XmlRpcHttpBinding(XmlRpcHttpSecurityMode securityMode)
 {
     this.security = new XmlRpcHttpSecurity();
     this.Initialize();
     this.security.Mode = securityMode;
 }