Example #1
0
 public static IHttpObservable SetHeader(this IHttpObservable query, string name, string value) =>
 query.WithConfigurer(c => query.Configurer(c).WithHeader(name, value));
Example #2
0
 public static IHttpObservable SetUserAgent(this IHttpObservable query, string value) =>
 query.WithConfigurer(c => query.Configurer(c).WithUserAgent(value));