Example #1
0
 /// <summary>
 /// Obtained more detailed event information, based on a <see cref="FedEvent"/>.
 /// </summary>
 /// <param name="fevent">The <see cref="FedEvent"/> object to pull the ID from.</param>
 /// <returns>An awaitable task of a <see cref="FedEventEx"/> object with the data.</returns>
 public Task <RunResult <FedEventEx> > GetEventListAsync(FedEvent fevent)
 {
     return(GetEventDetailsAsync(fevent.ID));
 }
Example #2
0
 /// <summary>
 /// Obtained more detailed event information, based on a <see cref="FedEvent"/>.
 /// </summary>
 /// <param name="fevent">The <see cref="FedEvent"/> object to pull the ID from.</param>
 /// <returns>A <see cref="FedEventEx"/> object with the data.</returns>
 public RunResult <FedEventEx> GetEventDetails(FedEvent fevent)
 {
     return(GetEventDetails(fevent.ID));
 }