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

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

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

Documentation can be found following the link below:

https://api.stackexchange.com/docs/badge-recipients-by-ids

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