Invoke Method names

Hi @Mamata_Shee,

The approach you can use is to go the the .net search website and search for your TargetObject.

In your case it is System.Media : .NET API browser | Microsoft Learn

System.Media contains three further classes. Each of these classes have their own methods. You choose the appropriate class to browse the available methods.

This way you also get to read up a bunch of documentation on the method you are trying to use and learn more about the TargetObject Class as well.

You can repeat this for any TargetObject type to find the associated methods.

Another tip is I would avoid writing New System.Media as TargetObject Invoke Method activity. Instead create a variable for your TargetObject and call that variable in your InvokeMethod. This way you the InvokeMethod does not need to execute an expression.

If you felt this process was tedious, kindly vote on this feature request, where I have pinned down the exact pain point you are experiencing.

Hope this helps you and others :slight_smile:

2 Likes