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

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

Makes a request to API method /badges/recipients

Documentation can be found following the link below:

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

public GetBadgesRecipients ( RangedQuery parameters = null ) : IBridgeResponseCollection
parameters RangedQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Badge> GetBadgesRecipients(RangedQuery parameters = null)
        {
            return GetApiResultCollection<Badge, RangedQuery>(ApiMethodEnum.BadgeRecipients, parameters);
        }

Same methods

StackClient::GetBadgesRecipients ( long ids, RangedQuery parameters = null ) : IBridgeResponseCollection
StackClient