C# 클래스 Altairis.Fakturoid.Client.FakturoidEventsProxy

Proxy class for working with events
상속: FakturoidEntityProxy
파일 보기 프로젝트 열기: ridercz/Fakturoid-API

공개 메소드들

메소드 설명
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>