About 616,000 results
Open links in new tab
  1. Platform Invoke (P/Invoke) - .NET | Microsoft Learn

    May 10, 2024 · P/Invoke is a technology that allows you to access structs, callbacks, and functions in unmanaged libraries from your managed code. Most of the P/Invoke API is contained in two …

  2. Control.Invoke Method (System.Windows.Forms) | Microsoft Learn

    The following example demonstrates the 'Invoke(Delegate)' method of 'Control class. A 'ListBox' and a 'Button' control are added to a form, containing a delegate

  3. Invoke pipeline activity - Microsoft Fabric | Microsoft Learn

    Sep 16, 2025 · Learn how to add an Invoke pipeline activity to a pipeline and use it to run another pipeline.

  4. Invoke-RestMethod (Microsoft.PowerShell.Utility) - PowerShell

    The Invoke-RestMethod cmdlet sends HTTP and HTTPS requests to Representational State Transfer (REST) web services that return richly structured data. PowerShell formats the response based to …

  5. Invoke-WebRequest (Microsoft.PowerShell.Utility) - PowerShell

    The Invoke-WebRequest cmdlet sends HTTP and HTTPS requests to a web page or web service. It parses the response and returns collections of links, images, and other significant HTML elements.

  6. Invoke-GPUpdate (GroupPolicy) | Microsoft Learn

    The Invoke-GPUpdate cmdlet refreshes Group Policy settings, including security settings that are set on remote computers by scheduling the running of the Gpupdate command on a remote computer.

  7. Control.BeginInvoke Method (System.Windows.Forms)

    For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread. The invoke methods always invoke their callbacks on the control's thread.

  8. Avoid using Invoke-Expression - PowerShell | Microsoft Learn

    Nov 17, 2022 · When a string from an untrusted source such as user input is passed directly to Invoke-Expression, arbitrary commands can be executed. Always consider a different, more robust and …

  9. MethodInvoker.Invoke Method (System.Reflection) | Microsoft Learn

    public object? Invoke(object? obj, object? arg1, object? arg2); Public Function Invoke (obj As Object, arg1 As Object, arg2 As Object) As Object Parameters obj Object The object on which to invoke the …

  10. Marshalling Data with Platform Invoke - .NET Framework

    Oct 4, 2022 · Marshal data with platform invoke in .NET. See a list of data types used in Windows APIs and C-style functions, and find their .NET managed type equivalents.