From 9bf7846a79a3c03bd8f714c84ac9c071f2bf9b83 Mon Sep 17 00:00:00 2001 From: David Hall Date: Thu, 25 Jul 2019 18:43:33 -0600 Subject: [PATCH] Fixed ambiguous reference --- System/BITS/BackgroundCopyJob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/BITS/BackgroundCopyJob.cs b/System/BITS/BackgroundCopyJob.cs index e24aadef..4bd9f934 100644 --- a/System/BITS/BackgroundCopyJob.cs +++ b/System/BITS/BackgroundCopyJob.cs @@ -380,7 +380,7 @@ namespace Vanara.IO } /// Retrieve the identity of the job's owner. - public System.Security.Principal.SecurityIdentifier Owner => RunAction(() => new System.Security.Principal.SecurityIdentifier(m_ijob.GetOwner())); + public System.Security.Principal.SecurityIdentifier Owner => RunAction(() => new System.Security.Principal.SecurityIdentifier((string)m_ijob.GetOwner())); /// Gets the integrity level of the token of the owner that created or took ownership of the job. /// Integrity level of the token of the owner that created or took ownership of the job.