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

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

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

Documentation can be found following the link below:

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

public GetBadge ( long id, BadgesQuery parameters = null ) : IBridgeResponseItem
id long The single badge in {ids}.
parameters BadgesQuery The request parameters.
Результат IBridgeResponseItem
        public override IBridgeResponseItem<Badge> GetBadge(long id, BadgesQuery parameters = null)
        {
            return GetBadges(new[] { id }, parameters).Single();
        }
StackClient