/// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <IList <string> > GetAsync(this IFeeds operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Initializes a new <see cref="DevRantClient"/>. /// </summary> public DevRantClient() { client = new HttpClient(); client.BaseAddress = new Uri(Constants.BaseAddress); feeds = new FeedCommands(this, client); user = new UserCommands(this, client); }
/// <param name='operations'> /// The operations group for this extension method. /// </param> public static IList <string> Get(this IFeeds operations) { return(operations.GetAsync().GetAwaiter().GetResult()); }