-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support thread and process concurrency (#135)
- Loading branch information
1 parent
74a05f1
commit 441488f
Showing
3 changed files
with
120 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
namespace WebDriverManager.Services | ||
using System; | ||
|
||
namespace WebDriverManager.Services | ||
{ | ||
public interface IBinaryService | ||
{ | ||
[Obsolete("binaryName parameter is redundant, use SetupBinary(url, zipDestination, binDestination)")] | ||
string SetupBinary(string url, string zipDestination, string binDestination, string binaryName); | ||
|
||
string SetupBinary(string url, string zipDestination, string binDestination); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters