BridgeStack.StackClient.GetUserTopAnswers C# (CSharp) Метод

GetUserTopAnswers() публичный Метод

Makes a request to API method /users/{ids}/tags/{tags}/top-answers

Documentation can be found following the link below:

https://api.stackexchange.com/docs/top-user-answers-in-tags

public GetUserTopAnswers ( long id, string tags, PostsQuery parameters = null ) : IBridgeResponseCollection
id long The single user {id}.
tags string The {tags} vector.
parameters PostsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Answer> GetUserTopAnswers(long id, string[] tags, PostsQuery parameters = null)
        {
            IRequestVector[] vectors = new[] { CreateIdVector(id), CreateTagsVector(tags) };
            return GetApiResultCollection<Answer, PostsQuery>(ApiMethodEnum.TopUserAnswersInTags, vectors, parameters);
        }
StackClient