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

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

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

Documentation can be found following the link below:

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

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