Skip to content

Commit

Permalink
Fixes ambiguous overload from #969 (#970)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdent-de committed Jul 31, 2023
1 parent 71e38c9 commit 273ccbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TaskService/TaskService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public TaskService(string targetServer, string userName = null, string accountDo
/// The password that is used to connect to the computer as a SecureString. If the user name and securePassword are not specified, then the current token is used.
/// </param>
/// <param name="forceV1">If set to <c>true</c> force Task Scheduler 1.0 compatibility.</param>
public TaskService(string targetServer, [Optional] string userName, [Optional] string accountDomain, [Optional] SecureString userSecurePassword, bool forceV1 = false)
public TaskService(string targetServer, string userName, string accountDomain, SecureString userSecurePassword, bool forceV1 = false)
{
BeginInit();
TargetServer = targetServer;
Expand Down

0 comments on commit 273ccbe

Please sign in to comment.