BridgeStack.AuthorizedStackClient.GetNetworkInboxUnread C# (CSharp) Метод

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

Makes a request to API method /inbox/unread

Documentation can be found following the link below:

https://api.stackexchange.com/docs/inbox-unread

public GetNetworkInboxUnread ( SinceQuery parameters = null ) : IBridgeResponseCollection
parameters SinceQuery The request parameters.
Результат IBridgeResponseCollection
        public IBridgeResponseCollection<InboxItem> GetNetworkInboxUnread(SinceQuery parameters = null)
        {
            return GetApiResultCollection<InboxItem, SinceQuery>(ApiMethodEnum.InboxUnread, parameters);
        }