C# Класс Altairis.Fakturoid.Client.FakturoidEventsProxy

Proxy class for working with events
Наследование: FakturoidEntityProxy
Показать файл Открыть проект

Открытые методы

Метод Описание
Select ( System.DateTime since = null ) : IEnumerable

Gets list of all current events.

The result may contain duplicate entities, if they are modified between requests for pages. In current version of API, there is no way to solve rhis.

Select ( int page, System.DateTime since = null ) : IEnumerable

Gets list of current events, paged by 15.

SelectAsync ( System.DateTime since = null ) : Task>

Gets asynchronously list of all current events.

The result may contain duplicate entities, if they are modified between requests for pages. In current version of API, there is no way to solve rhis.

SelectAsync ( int page, System.DateTime since = null ) : Task>

Gets asynchronously list of current events, paged by 15.

Приватные методы

Метод Описание
FakturoidEventsProxy ( FakturoidContext context ) : System

Описание методов

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

Gets list of all current events.
The result may contain duplicate entities, if they are modified between requests for pages. In current version of API, there is no way to solve rhis.
public Select ( System.DateTime since = null ) : IEnumerable
since System.DateTime The date since when events are to be selected.
Результат IEnumerable

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

Gets list of current events, paged by 15.
page;Page must be greater than zero.
public Select ( int page, System.DateTime since = null ) : IEnumerable
page int The page number.
since System.DateTime The date since when events are to be selected.
Результат IEnumerable

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

Gets asynchronously list of all current events.
The result may contain duplicate entities, if they are modified between requests for pages. In current version of API, there is no way to solve rhis.
public SelectAsync ( System.DateTime since = null ) : Task>
since System.DateTime The date since when events are to be selected.
Результат Task>

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

Gets asynchronously list of current events, paged by 15.
page;Page must be greater than zero.
public SelectAsync ( int page, System.DateTime since = null ) : Task>
page int The page number.
since System.DateTime The date since when events are to be selected.
Результат Task>