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

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

Makes a request to API method /answers/{ids}

Documentation can be found following the link below:

https://api.stackexchange.com/docs/answers-by-ids

public GetAnswer ( long id, PostsQuery parameters = null ) : IBridgeResponseItem
id long The single answer in {ids}.
parameters PostsQuery The request parameters.
Результат IBridgeResponseItem
        public override IBridgeResponseItem<Answer> GetAnswer(long id, PostsQuery parameters = null)
        {
            return GetAnswers(new[] { id }, parameters).Single();
        }
StackClient