public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier) { if (identifier == null) throw new ArgumentNullException("identifier"); directoryIdentifier = identifier; _dsmlHttpConnection = (HttpWebRequest)WebRequest.Create(((DsmlDirectoryIdentifier)directoryIdentifier).ServerUri); Hashtable tempTable = new Hashtable(); _httpConnectionTable = Hashtable.Synchronized(tempTable); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier) { this.dsmlSoapAction = "\"#batchRequest\""; this.dsmlAuthType = System.DirectoryServices.Protocols.AuthType.Negotiate; if (identifier == null) { throw new ArgumentNullException("identifier"); } base.directoryIdentifier = identifier; this.dsmlHttpConnection = (HttpWebRequest) WebRequest.Create(((DsmlDirectoryIdentifier) base.directoryIdentifier).ServerUri); Hashtable table = new Hashtable(); this.httpConnectionTable = Hashtable.Synchronized(table); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier) { if (identifier == null) { throw new ArgumentNullException("identifier"); } directoryIdentifier = identifier; _dsmlHttpConnection = (HttpWebRequest)WebRequest.Create(((DsmlDirectoryIdentifier)directoryIdentifier).ServerUri); Hashtable tempTable = new Hashtable(); _httpConnectionTable = Hashtable.Synchronized(tempTable); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier, NetworkCredential credential) : this(identifier) { NetworkCredential networkCredential; DsmlSoapHttpConnection dsmlSoapHttpConnection = this; if (credential != null) { networkCredential = new NetworkCredential(credential.UserName, credential.Password, credential.Domain); } else { networkCredential = null; } dsmlSoapHttpConnection.directoryCredential = networkCredential; }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier) { this.dsmlSoapAction = "\"#batchRequest\""; this.dsmlAuthType = System.DirectoryServices.Protocols.AuthType.Negotiate; if (identifier == null) { throw new ArgumentNullException("identifier"); } base.directoryIdentifier = identifier; this.dsmlHttpConnection = (HttpWebRequest)WebRequest.Create(((DsmlDirectoryIdentifier)base.directoryIdentifier).ServerUri); Hashtable table = new Hashtable(); this.httpConnectionTable = Hashtable.Synchronized(table); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier) { this.dsmlSoapAction = "\"#batchRequest\""; this.dsmlAuthType = AuthType.Negotiate; if (identifier != null) { this.directoryIdentifier = identifier; this.dsmlHttpConnection = (HttpWebRequest)WebRequest.Create(((DsmlDirectoryIdentifier)this.directoryIdentifier).ServerUri); Hashtable hashtables = new Hashtable(); this.httpConnectionTable = Hashtable.Synchronized(hashtables); return; } else { throw new ArgumentNullException("identifier"); } }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier, NetworkCredential credential, AuthType authType) : this(identifier, credential) { AuthType = authType; }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier, NetworkCredential credential) : this(identifier) { directoryCredential = (credential != null) ? new NetworkCredential(credential.UserName, credential.Password, credential.Domain) : null; }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier, NetworkCredential credential, AuthType authType) { throw new NotImplementedException(); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier) { throw new NotImplementedException(); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier, NetworkCredential credential, System.DirectoryServices.Protocols.AuthType authType) : this(identifier, credential) { this.AuthType = authType; }
public DsmlSoapHttpConnection (DsmlDirectoryIdentifier identifier, NetworkCredential credential, AuthType authType) { throw new NotImplementedException (); }
public DsmlSoapHttpConnection (DsmlDirectoryIdentifier identifier) { throw new NotImplementedException (); }
public DsmlSoapHttpConnection(DsmlDirectoryIdentifier identifier, NetworkCredential credential) : this(identifier) { base.directoryCredential = (credential != null) ? new NetworkCredential(credential.UserName, credential.Password, credential.Domain) : null; }