Link or assembly for the ScreenCaptureJob class

I want to use

ScreenCaptureJob 

in my application. Google'd and found that this assembly:

 'Microsoft.Expression.Encoder.ScreenCapture' 

. But still I can not find it in the add links window in .NET assemblies. Please suggest how I can get the required assembly for this class:

 ScreenCaptureJob 
+4
source share
2 answers

You may need to first install all or part of the Expression Studio package. You can then browse the MSDN website for explicit instructions on using Encoder.

Before you can use Expression Encoder OM in Visual Studio, you must add references to Expression Encoder assemblies. To add Expression Encoding Nodes in Visual Studio

  • In Visual Studio, click Project, and then Add Link.
  • In the Add Link dialog box, click on the .NET tab at the top.
  • Press and hold the CTRL key, and then click Microsoft.Expression.Encoder, Microsoft.Expression.Encoder.Api2, Microsoft.Expression.Encoder.Types, and Microsoft.Expression.Encoder.Utilities.
  • Click OK.
+1
source

you need to download it from here and add it manually to your project

+3
source

Source: https://habr.com/ru/post/1501248/


All Articles