Windows-powershell / PowerShell-master /src /System.Management.Automation /utils /tracing /IMethodInvoker.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| namespace System.Management.Automation.Tracing | |
| { | |
| using System; | |
| internal interface IMethodInvoker | |
| { | |
| Delegate Invoker { get; } | |
| object[] CreateInvokerArgs(Delegate methodToInvoke, object?[]? methodToInvokeArgs); | |
| } | |
| } | |