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

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

Makes a request to API method /privileges

Documentation can be found following the link below:

https://api.stackexchange.com/docs/privileges

public GetPrivileges ( SimpleQuery parameters = null ) : IBridgeResponseCollection
parameters SimpleQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Privilege> GetPrivileges(SimpleQuery parameters = null)
        {
            return GetApiResultCollection<Privilege, SimpleQuery>(ApiMethodEnum.Privileges, parameters);
        }
StackClient