如何根据以下示例代码从 Roslyn 中提取对CallApiAsync的所有调用。例如,在下面的代码中,我希望提取以下调用
CallApiAsync<ISomeApi, SomeResponseType>(x => x.GetResponse(new SomeRequestType()));
能够提取通用参数 ISomeApi,SomeResponseType 以及使用参数 SomeRequestType
调用 GetResponse 的lambda表达式方法public class ApiWrapper
{
public delegate TResult ApiMethodAsync<T, TResult>(T api);
public virtual SomeResponseType MakeSomeRequestToApi()
{
return CallApiAsync<ISomeApi, SomeResponseType>(x => x.GetResponse(new SomeRequestType()));
}
public virtual TResult CallApiAsync<T, TResult>(ApiMethodAsync<T, TResult> apiMethod) where TResult : new()
{
return new TResult();
}
}
public interface ISomeApi
{
SomeResponseType GetResponse(SomeRequestType request);
}
public class SomeResponseType { }
public class SomeRequestType { }