Alternate way to use DuplicateOutput() of IDXGIOutput1 in C# for UWP?

348 Views Asked by At

Is there any way to use the DuplicateOutput() method of IDXGIOutput1 interface to get desktop duplication currently it is available in C++, I want to use it in C#. The DuplicateOutput() is only available for desktop I want it to implement in UWP, so please specify any alternate way for this.

2

There are 2 best solutions below

0
On

You can implement a windows runtime component and write your own DuplicateOutput method by some supported win32 APIs in UWP. Then, you could add reference to this component in C# UWP project.

0
On

If you're developing a general UWP app, then, this API is not available in UWP. You could check the Win32 and COM APIs for UWP apps for more details.

If you're not going to publish your app to windows store,that is, you might want to side-load your app. Then, you could choose the Brokered Windows Runtime Components for a side-loaded Windows Store app. If you use the brokered windows runtime components, you would be able to use this API.