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

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

Makes a request to API method /sites

Documentation can be found following the link below:

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

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