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.
using System; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.Diagnostics; | |
using System.Net.Sockets; | |
namespace ConsolePortScanner | |
{ | |
class MainClass |
// heavily modified version of http://forums.asp.net/t/2011994.aspx | |
... | |
WriteLine(""); | |
WriteDocumentation(entity.Documentation);#> | |
... | |
WriteDocumentation(edmProperty.Documentation, CurrentIndent); | |
... | |
WriteDocumentation(complexProperty.Documentation); | |
... |
using System; | |
using System.Net.Sockets; | |
using System.Net; | |
using System.Text; | |
using System.Threading; | |
namespace UDPer | |
{ | |
class UDPer | |
{ |