(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <!doctype html> | |
| <html> | |
| <style> | |
| body { | |
| background: white | |
| } | |
| section { | |
| background: black; | |
| color: white; |
| jeffpapp [8:13 AM] | |
| Yeah, I’d be interested in that. Just haven’t had to look at monitors in a year or so | |
| damccull [8:13 AM] | |
| Ah hah...I was using DefaultAuthenticationScheme when apparently I should be using DefaultScheme. | |
| [8:14] | |
| yep |
| // Read additional notes at the end of the file | |
| using System; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Reflection.Metadata; | |
| using System.Diagnostics; | |
| #if NET462 | |
| #endif |
| using System; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore.Server.Kestrel.Internal.System.IO.Pipelines; | |
| namespace WebApplication19 | |
| { | |
| public class Program | |
| { | |
| public static async Task Main(string[] args) |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using Microsoft.Extensions.Hosting; | |
| namespace WebApplication24 | |
| { | |
| public abstract class HostedService : IHostedService |