Blog.Web.Api.Controllers.SearchController.GetPosts C# (CSharp) 메소드

GetPosts() 개인적인 메소드

private GetPosts ( string query, int threshold = 5, int skip = 10 ) : Task>
query string
threshold int
skip int
리턴 Task>
        private async Task<List<Post>> GetPosts(string query, int threshold = 5, int skip = 10)
        {
            var result = await Task.Run(() => _posts.SearchPosts(query, threshold, skip));
            return result;
        }