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

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

Makes a request to API method /filter/{filters}/read

Documentation can be found following the link below:

https://api.stackexchange.com/docs/read-filter

public GetNetworkFilter ( string id ) : IBridgeResponseItem
id string The single filter in {ids}.
Результат IBridgeResponseItem
        public override IBridgeResponseItem<Filter> GetNetworkFilter(string id)
        {
            return GetNetworkFilters(new[] { id }).Single();
        }
StackClient