Beispiel #1
0
 public virtual Event Get(string eventId, EventGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetEntity(eventId, options, requestOptions));
 }
Beispiel #2
0
 public virtual Task <Event> Get(string eventId, EventGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(GetEntity(eventId, options, requestOptions, cancellationToken));
 }
Beispiel #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));
 }