Skip to content

「✔完成」Webserver written in C#. Writes out any interaction in [YYYY-mm-dd hh:mm:ss] 'HTTP_METHOD /...' HTTP_CODE STATUS format in console

Notifications You must be signed in to change notification settings

equqe/server-sharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

serverSharp

webserver written in C#.

server output

image

page render

image

image

notes

server uses System.Globalization; for determining the correct local time of the host:

DateTime currentDateTime = DateTime.Now;
   string formattedDateTime = currentDateTime.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);

you can change the port by changing int port variable. the port is set to 5050 by default:

private static int port = 5050;

About

「✔完成」Webserver written in C#. Writes out any interaction in [YYYY-mm-dd hh:mm:ss] 'HTTP_METHOD /...' HTTP_CODE STATUS format in console

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published