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

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

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

Documentation can be found following the link below:

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

public GetComment ( long id, CommentsQuery parameters = null ) : IBridgeResponseItem
id long The single comment in {ids}.
parameters CommentsQuery The request parameters.
Результат IBridgeResponseItem
        public override IBridgeResponseItem<Comment> GetComment(long id, CommentsQuery parameters = null)
        {
            return GetComments(new[] { id }, parameters).Single();
        }
StackClient