<PackageReference Include="System.ServiceModel.Primitives" Version="10.0.652802" />

System.ServiceModel.Dispatcher.SyncMethodInvoker

namespace System.ServiceModel.Dispatcher { public class SyncMethodInvoker : IOperationInvoker { public MethodInfo Method { get; } public string MethodName { get; } public SyncMethodInvoker(MethodInfo method); public object[] AllocateInputs(); public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state); public object InvokeEnd(object instance, out object[] outputs, IAsyncResult result); } }