This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
| OS | Version | Download | MD5 |
|---|---|---|---|
| Android | 4.0 | android4.tar.gz | cceba76db9193d6e93859f177d4fa983 |
| 4.5 | android4-5.tar.gz | be654d7b436b984aacb5987346039975 | |
| 4.6 | android4-6.tar.gz | 483d072f8009e9081a6e2f9ab8dbd621 | |
| 7.1 | Android_7.1.tar.gz | 0b2980b4cd108976d9ee37f4b3db8113 | |
| 8.0 | Android_8.tar.gz | 59845f633eea5e3c968f7697d0af7536 | |
| 9.0 | Android_9.tar.gz | 54de0d791303852a7cf4691c8bf364a9 |
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| if ($host.Name -eq 'ConsoleHost') | |
| { | |
| Import-Module PSReadLine | |
| } | |
| #Import-Module PSColors | |
| #Import-Module posh-git | |
| Import-Module -Name Terminal-Icons |
| using System; | |
| public class EventKeywordDemo | |
| { | |
| public event Action<int, bool> event1; | |
| public Action<int, bool> action1; | |
| public event EventHandler event2; | |
| public delegate void SampleEventType(int param1, bool param2); //Equivalent to Action<int, bool> |
| // first: `npm init -- yes && npm i chalk puppeteer-core` | |
| // then: `node . --help` | |
| const puppeteer = require('puppeteer-core'); | |
| const chalk = require('chalk'); | |
| // --- | |
| const ifHasParam = (s = '') => process.argv.includes(s); | |
| const paramValueOf = (s = '') => (process.argv.find(x => x.startsWith(`${s}=`)) || '').split('=')[1]; | |
| const DEFAULT_VIDEO_ID = '5qap5aO4i9A'; // ChillCow; his other channel is "DWcJFNfaw9c" | |
| const DEBUG = ifHasParam('--debug'); | |
| const SHOW_HEAD = ifHasParam('--head'); |
| using System; | |
| public class DelegateExamples | |
| { | |
| public void Run() | |
| { | |
| Action action1 = delegate { /*Do something*/ }; | |
| action1(); | |
| FunctionWithOnComplete(action1); |
| #!/bin/bash | |
| set -o pipefail | |
| KERNEL_WORKING_DIRECTORY="/usr/src" | |
| KERNEL_VERSION=$(uname -r) | |
| REQUIRED_DEPENDENCIES="git bison flex elfutils-libelf-devel openssl-devel" | |
| KERNEL_SRC_DIR="$KERNEL_WORKING_DIRECTORY/WSL2-Linux-Kernel-$(uname -r)" | |
| echo "Warning: This script has to be run on sudo permissions. If you encounter issues please report it immediately." |
Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.
| using System; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.AspNetCore.Mvc; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using Microsoft.Extensions.Hosting; | |
| using Microsoft.Extensions.Logging; | |
| using Carter; | |
| using Carter.Response; | |
| using Carter.OpenApi; |