c# Programming Glossary: port
URL mapping with C# HttpListener http://stackoverflow.com/questions/10017564/url-mapping-with-c-sharp-httplistener In the code below I'm waiting for any call to the 8080 port. static void Main HttpListener listener new HttpListener listener.Prefixes.Add..
How to Query an NTP Server using C#? http://stackoverflow.com/questions/1193955/how-to-query-an-ntp-server-using-c addresses Dns.GetHostEntry ntpServer .AddressList The UDP port number assigned to NTP is 123 var ipEndPoint new IPEndPoint..
Create Excel (.XLS and .XLSX) file from C# [closed] http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c-sharp 2003 requirement on the file. I am currently looking at a port of the PEAR PHP library Excel Writer that will allow some pretty.. compatible format that all modern versions of Excel support. The PEAR Excel Writer is here PEAR Excel Writer c# .net excel.. posted on Google Code ExcelLibrary This looks to be a port of the PHP ExcelWriter that you mentioned above. It will not..
What are the pros and cons to keeping SQL in Stored Procs versus Code http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code don't need to run a SQL script to update queries Easier to port to another DB no procs to port Advantages for Stored Procs Performance.. to update queries Easier to port to another DB no procs to port Advantages for Stored Procs Performance Security c# sql sql..
What NoSQL solutions are out there for .NET? [closed] http://stackoverflow.com/questions/1777103/what-nosql-solutions-are-out-there-for-net using Redis . It's an advanced NoSQL database with support for rich server side data structures such as lists sets sorted.. sets sorted sets and hashes. It runs in memory but supports both a snapshot persistence mode as well as an Append only.. it allows it to be extremely versatile whilst only supporting a limited operation set. i.e. Redis has been commonly seen..
Websocket server: onopen function on the web socket is never called http://stackoverflow.com/questions/2211898/websocket-server-onopen-function-on-the-web-socket-is-never-called handshake streamWriter.Flush I'm running to web server on port 8080 and the web socket server on port 8181 both on my localhost... to web server on port 8080 and the web socket server on port 8181 both on my localhost. I've tried sending the handshake..
How to create a simple proxy in C#? http://stackoverflow.com/questions/226784/how-to-create-a-simple-proxy-in-c browser for all request to be send to 127.0.0.1 at the port the Proxy listen. This way request will be not sent to the Internet..
In C#, how to check if a TCP port is available? http://stackoverflow.com/questions/570098/in-c-how-to-check-if-a-tcp-port-is-available C# how to check if a TCP port is available In C# to use a TcpClient or generally to connect.. to connect to a socket how can I first check if a certain port is free on my machine more info This is the code I use TcpClient.. This is the code I use TcpClient c I want to check here if port is free. c new TcpClient ip port c# .net tcp tcpclient share..
How to write a scalable Tcp/Ip based server http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server new System.Net.IPEndPoint localhost.AddressList 0 _port catch System.ArgumentOutOfRangeException e throw new ArgumentOutOfRangeException.. Could not create socket check to make sure not duplicating port e try _serverSocket.Bind serverEndPoint _serverSocket.Listen..
CSV parser/reader for C#? [closed] http://stackoverflow.com/questions/906841/csv-parser-reader-for-c licence Some counterpart of SuperCSV for Java perhaps a port c# csv share improve this question http www.filehelpers.com..
iTextSharp - Sending in-memory pdf in an email attachment http://stackoverflow.com/questions/1196059/itextsharp-sending-in-memory-pdf-in-an-email-attachment SmtpClient smtp new SmtpClient Host smtp.gmail.com Port 587 EnableSsl true Credentials new NetworkCredential username@gmail.com.. SmtpClient smtp new SmtpClient Host smtp.gmail.com Port 587 EnableSsl true Credentials new NetworkCredential username@gmail.com..
Using FFmpeg in .net? http://stackoverflow.com/questions/2527963/using-ffmpeg-in-net to the c library in order to play convert videos etc. OR Port avcodec.h and avformat.h is that all i need to c# by using a..
Sending email in .NET through Gmail http://stackoverflow.com/questions/32260/sending-email-in-net-through-gmail body Body var smtp new SmtpClient Host smtp.gmail.com Port 587 EnableSsl true DeliveryMethod SmtpDeliveryMethod.Network..
How to implement a ConfigurationSection with a ConfigurationElementCollection http://stackoverflow.com/questions/3935331/how-to-implement-a-configurationsection-with-a-configurationelementcollection RT.Core Services AddService Port 6996 ReportType File AddService Port 7001 ReportType Other.. Services AddService Port 6996 ReportType File AddService Port 7001 ReportType Other Services ServicesSection configuration.. public ServiceConfig int port string reportType Port port ReportType reportType ConfigurationProperty Port DefaultValue..
How do I use dataReceived event of the SerialPort Port Object in C#? http://stackoverflow.com/questions/466474/how-do-i-use-datareceived-event-of-the-serialport-port-object-in-c do I use dataReceived event of the SerialPort Port Object in C# I am attempting to create a small application.. do I use dataReceived event of the SerialPort Port Object in C# I am attempting to create a small application.. event to stream instead. After reading the Top 5 SerialPort Tips I still can't seem to it to work and don't know what I..
Can .NET load and parse a properties file equivalent to Java Properties class? http://stackoverflow.com/questions/485659/can-net-load-and-parse-a-properties-file-equivalent-to-java-properties-class and the value such as the following ServerName prod srv1 Port 8888 CustomProperty Any value In Java the Properties class handles..
C# Raw Sockets Port Forwarding http://stackoverflow.com/questions/567954/c-sharp-raw-sockets-port-forwarding Raw Sockets Port Forwarding I am trying to create a simple C# app which does..
High performance TCP server in C# http://stackoverflow.com/questions/6023264/high-performance-tcp-server-in-c-sharp if you look at 1k connections you need to Avoid TCP IP Port Exhaustion the link is for BizTalk but the issue is generic..
How to write a scalable Tcp/Ip based server http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server e throw new ArgumentOutOfRangeException Port number entered would seem to be invalid should be between 1024..
Releasing a unplugged virtual Serial Port http://stackoverflow.com/questions/9835881/releasing-a-unplugged-virtual-serial-port a unplugged virtual Serial Port I got a little problem with a USB Barcode Scanner. I am using.. USB Barcode Scanner. I am using the Scanner with the SerialPort class this._barcodeScanner new SerialPort comPort 9600 Parity.None.. with the SerialPort class this._barcodeScanner new SerialPort comPort 9600 Parity.None 8 StopBits.One Handshake Handshake.None..
|