获取对指定方法的所有调用以及它与Roslyn的参数列表

时间:2015-08-06 09:10:46

标签: c# lambda delegates roslyn

如何根据以下示例代码从 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 { }

0 个答案:

没有答案