BridgeStack.StackClient.GetNetworkSites C# (CSharp) Method

GetNetworkSites() public method

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.
return IBridgeResponseCollection
        public override IBridgeResponseCollection<NetworkSite> GetNetworkSites(SimpleQuery parameters = null)
        {
            return GetApiResultCollection<NetworkSite, SimpleQuery>(ApiMethodEnum.Sites, parameters);
        }
StackClient