Exemplo n.º 1
0
 public virtual Event Get(string eventId, EventGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetEntity(eventId, options, requestOptions));
 }
Exemplo n.º 2
0
 public virtual Task <Event> Get(string eventId, EventGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(GetEntity(eventId, options, requestOptions, cancellationToken));
 }
Exemplo n.º 3
0
 public virtual Task <Event> GetAsync(string id, EventGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.GetEntityAsync(id, options, requestOptions, cancellationToken));
 }