I must use (enable and disable) the UWF in an application in Windows 10. This is why I have to migrate the project from Windows 7 to Windows 10. The Win7's EWF functionality should turn it into UWF in Win10. In the current project the colleague who had done it had used a dll (EWFProxy.XEWF.cs). Is there something similar to UWF?
public class XEWF : IDisposable
{
public XEWF();
public bool IsEWFInstalled { get; }
public bool IsSystemProtected { get; }
public List<string> ListVolumes { get; }
public void Commit();
public void Disable();
public override sealed void Dispose();
[HandleProcessCorruptedStateExceptions]
protected virtual void Dispose(bool value);
public void Enable();
public EWFCMD GetPendingCommand();
public EWFSTATE GetState();
public void Reset();
}
Thanks