.NET Tip: Testing Network Services with the TcpClient Class California

The TcpClient class enables you to test whether services such as FTP and SMTP/POP3 mail are running and responding properly.

Local Companies

California Motorcycle Accident Lawyer
415-777-1511
595 Market Street, Ste 2520
San Francisco, CA
Wireless Networks, Inc.
650-851-1656
P.O. Box 620752
Woodside, CA
Fiorano Software, Inc.
408-354-3210
718 University Avenue, Suite 212
Los Gatos, CA
Bennett Consulting
925-705-1812
Po Box 523
Alamo, CA
Valortek
866-640-8181
Beverly Hills, CA
DocuComp, LLC
(866) 329-7480
755 Nela Lane
Los Altos, CA
Xerosoft
1-888-838-8011
5694 Mission Center Road #315
San diego, CA
PerlUSA
(800) 880-4040
230 Dolores Street
San Francisco, CA
Callbox, Inc.
(310) 439-5814
16770 Encino Hills Dr. Suite 200
Encino, CA
ActivSupport, Inc.
1-877 228 4863
900 Cherry Avenue
San Bruno, CA


.NET Tip: Testing Network Services with the TcpClient Class

provided by: 
Originally published at Internet.com


Testing whether a server is up and running isn't very useful when you already know it is. A more useful type of test is verifying that a service is up and running. This applies mostly to non-web services, since web services can be tested using a different class, such as HttpWebRequest. For services such as FTP and SMTP/POP3 mail, you can use the TcpClient class to test whether these services are up and running and responding properly. The TcpClient class is located in the System.Net.Sockets library, so make sure you have that library referenced in your code.

The following example checks two mail servers to make sure they are responding properly: ArrayList addrs = new ArrayList(); addrs.Add("mail.northcomp.com"); addrs.Add("mail2.northcomp.com"); addrs.Add("mail3.northcomp.com"); byte[] returnBuffer; foreach (string s in addrs) { TcpClient c = new TcpClient(); try { c.Connect(s, 25); NetworkStream ns = c.GetStream(); if (ns.CanRead) { returnBuffer = new byte[c.ReceiveBufferSize]; int bytesRead = ns.Read(returnBuffer, 0, (int)c.ReceiveBufferSize); Console.WriteLine("Result from {0}:", s); Console.WriteLine(Encoding.UTF8.GetString (returnBuffer).Substring(0, bytesRead)); ns.Close(); } c.Close(); } catch (Exception ex) { Console.WriteLine("Error connecting to {0}.", s); Console.WriteLine("Exception:"); Console.WriteLine(ex.ToString()); } } Console.WriteLine("Mail server check completed.");

This code first creates a TcpClient and then attempts to connect to the hostname in question on port 25, which is the default SMTP port. It checks to make sure that the NetworkStream can read data, and if so, it puts that return data into a buffer. The result of the Read method states exactly how many bytes were read, so you can use that value to trim the buffer and eliminate a bunch of empty space at the end. The buffer has to be encoded for display using the Encoding.UTF8.GetString method; otherwise, the data would not display properly.

In this example, the first two addresses will work, but the third one will not. In case of an error, a simple exception trap dumps out the error to the console window. If successful, the example dumps out the text that was received from the server in question. Each of these cases connects to the SMTP port and will get an appropriate greeting from the server. To use this more efficiently, you could look for a particular piece of text in the response to verify that the server was sending the correct response.

You can easily change this code to read the hosts from a database and use other ports, such as FTP, POP3, and so forth. You just need to change the value sent on the Connect method to control which port is being used for the connection.

About the Author

Eric Smith is the owner of Northstar Computer Systems, a Web-hosting company based in Indianapolis, Indiana. He is also a MCT and MCSD who has been developing with .NET since 2001. In addition, he has written or contributed to 12 books covering .NET, ASP, and Visual Basic. Send him your questions and feedback via e-mail at questions@techniquescentral.com.

Author: Eric Smith

Read article at Internet.com site

Featured Local Company

Astoundit Software, LLC

805-492-2506
1534 N. Moorpark Rd
Thousand Oaks, CA
http://www.astoundit.com

Regional Articles
- .NET Tip: Testing Network Services with the TcpClient Class Adelanto CA
- .NET Tip: Testing Network Services with the TcpClient Class Agoura Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class Alameda CA
- .NET Tip: Testing Network Services with the TcpClient Class Alhambra CA
- .NET Tip: Testing Network Services with the TcpClient Class Aliso Viejo CA
- .NET Tip: Testing Network Services with the TcpClient Class Alpine CA
- .NET Tip: Testing Network Services with the TcpClient Class Altadena CA
- .NET Tip: Testing Network Services with the TcpClient Class Anaheim CA
- .NET Tip: Testing Network Services with the TcpClient Class Antelope CA
- .NET Tip: Testing Network Services with the TcpClient Class Antioch CA
- .NET Tip: Testing Network Services with the TcpClient Class Apple Valley CA
- .NET Tip: Testing Network Services with the TcpClient Class Aptos CA
- .NET Tip: Testing Network Services with the TcpClient Class Arcadia CA
- .NET Tip: Testing Network Services with the TcpClient Class Arcata CA
- .NET Tip: Testing Network Services with the TcpClient Class Arroyo Grande CA
- .NET Tip: Testing Network Services with the TcpClient Class Arvin CA
- .NET Tip: Testing Network Services with the TcpClient Class Atascadero CA
- .NET Tip: Testing Network Services with the TcpClient Class Atwater CA
- .NET Tip: Testing Network Services with the TcpClient Class Auburn CA
- .NET Tip: Testing Network Services with the TcpClient Class Avenal CA
- .NET Tip: Testing Network Services with the TcpClient Class Azusa CA
- .NET Tip: Testing Network Services with the TcpClient Class Bakersfield CA
- .NET Tip: Testing Network Services with the TcpClient Class Baldwin Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Banning CA
- .NET Tip: Testing Network Services with the TcpClient Class Barstow CA
- .NET Tip: Testing Network Services with the TcpClient Class Bell CA
- .NET Tip: Testing Network Services with the TcpClient Class Bellflower CA
- .NET Tip: Testing Network Services with the TcpClient Class Belmont CA
- .NET Tip: Testing Network Services with the TcpClient Class Benicia CA
- .NET Tip: Testing Network Services with the TcpClient Class Berkeley CA
- .NET Tip: Testing Network Services with the TcpClient Class Beverly Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class Bloomington CA
- .NET Tip: Testing Network Services with the TcpClient Class Blythe CA
- .NET Tip: Testing Network Services with the TcpClient Class Bonita CA
- .NET Tip: Testing Network Services with the TcpClient Class Brawley CA
- .NET Tip: Testing Network Services with the TcpClient Class Brea CA
- .NET Tip: Testing Network Services with the TcpClient Class Brentwood CA
- .NET Tip: Testing Network Services with the TcpClient Class Buena Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Burbank CA
- .NET Tip: Testing Network Services with the TcpClient Class Burlingame CA
- .NET Tip: Testing Network Services with the TcpClient Class Calabasas CA
- .NET Tip: Testing Network Services with the TcpClient Class Calexico CA
- .NET Tip: Testing Network Services with the TcpClient Class Camarillo CA
- .NET Tip: Testing Network Services with the TcpClient Class Campbell CA
- .NET Tip: Testing Network Services with the TcpClient Class Canoga Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Canyon Country CA
- .NET Tip: Testing Network Services with the TcpClient Class Carlsbad CA
- .NET Tip: Testing Network Services with the TcpClient Class Carmichael CA
- .NET Tip: Testing Network Services with the TcpClient Class Carpinteria CA
- .NET Tip: Testing Network Services with the TcpClient Class Carson CA
- .NET Tip: Testing Network Services with the TcpClient Class Castaic CA
- .NET Tip: Testing Network Services with the TcpClient Class Castro Valley CA
- .NET Tip: Testing Network Services with the TcpClient Class Cathedral City CA
- .NET Tip: Testing Network Services with the TcpClient Class Ceres CA
- .NET Tip: Testing Network Services with the TcpClient Class Cerritos CA
- .NET Tip: Testing Network Services with the TcpClient Class Chatsworth CA
- .NET Tip: Testing Network Services with the TcpClient Class Chico CA
- .NET Tip: Testing Network Services with the TcpClient Class Chino CA
- .NET Tip: Testing Network Services with the TcpClient Class Chino Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class Chowchilla CA
- .NET Tip: Testing Network Services with the TcpClient Class Chula Vista CA
- .NET Tip: Testing Network Services with the TcpClient Class Citrus Heights CA
- .NET Tip: Testing Network Services with the TcpClient Class Claremont CA
- .NET Tip: Testing Network Services with the TcpClient Class Clovis CA
- .NET Tip: Testing Network Services with the TcpClient Class Coachella CA
- .NET Tip: Testing Network Services with the TcpClient Class Coalinga CA
- .NET Tip: Testing Network Services with the TcpClient Class Colton CA
- .NET Tip: Testing Network Services with the TcpClient Class Compton CA
- .NET Tip: Testing Network Services with the TcpClient Class Concord CA
- .NET Tip: Testing Network Services with the TcpClient Class Corcoran CA
- .NET Tip: Testing Network Services with the TcpClient Class Corona CA
- .NET Tip: Testing Network Services with the TcpClient Class Coronado CA
- .NET Tip: Testing Network Services with the TcpClient Class Costa Mesa CA
- .NET Tip: Testing Network Services with the TcpClient Class Covina CA
- .NET Tip: Testing Network Services with the TcpClient Class Crescent City CA
- .NET Tip: Testing Network Services with the TcpClient Class Culver City CA
- .NET Tip: Testing Network Services with the TcpClient Class Cupertino CA
- .NET Tip: Testing Network Services with the TcpClient Class Cypress CA
- .NET Tip: Testing Network Services with the TcpClient Class Daly City CA
- .NET Tip: Testing Network Services with the TcpClient Class Dana Point CA
- .NET Tip: Testing Network Services with the TcpClient Class Danville CA
- .NET Tip: Testing Network Services with the TcpClient Class Davis CA
- .NET Tip: Testing Network Services with the TcpClient Class Delano CA
- .NET Tip: Testing Network Services with the TcpClient Class Desert Hot Springs CA
- .NET Tip: Testing Network Services with the TcpClient Class Diamond Bar CA
- .NET Tip: Testing Network Services with the TcpClient Class Dinuba CA
- .NET Tip: Testing Network Services with the TcpClient Class Downey CA
- .NET Tip: Testing Network Services with the TcpClient Class Duarte CA
- .NET Tip: Testing Network Services with the TcpClient Class Dublin CA
- .NET Tip: Testing Network Services with the TcpClient Class El Cajon CA
- .NET Tip: Testing Network Services with the TcpClient Class El Centro CA
- .NET Tip: Testing Network Services with the TcpClient Class El Cerrito CA
- .NET Tip: Testing Network Services with the TcpClient Class El Dorado Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class El Monte CA
- .NET Tip: Testing Network Services with the TcpClient Class El Segundo CA
- .NET Tip: Testing Network Services with the TcpClient Class El Sobrante CA
- .NET Tip: Testing Network Services with the TcpClient Class Elk Grove CA
- .NET Tip: Testing Network Services with the TcpClient Class Emeryville CA
- .NET Tip: Testing Network Services with the TcpClient Class Encinitas CA
- .NET Tip: Testing Network Services with the TcpClient Class Encino CA
- .NET Tip: Testing Network Services with the TcpClient Class Escondido CA
- .NET Tip: Testing Network Services with the TcpClient Class Eureka CA
- .NET Tip: Testing Network Services with the TcpClient Class Fair Oaks CA
- .NET Tip: Testing Network Services with the TcpClient Class Fairfield CA
- .NET Tip: Testing Network Services with the TcpClient Class Fallbrook CA
- .NET Tip: Testing Network Services with the TcpClient Class Fillmore CA
- .NET Tip: Testing Network Services with the TcpClient Class Folsom CA
- .NET Tip: Testing Network Services with the TcpClient Class Fontana CA
- .NET Tip: Testing Network Services with the TcpClient Class Fountain Valley CA
- .NET Tip: Testing Network Services with the TcpClient Class Fremont CA
- .NET Tip: Testing Network Services with the TcpClient Class Fresno CA
- .NET Tip: Testing Network Services with the TcpClient Class Fullerton CA
- .NET Tip: Testing Network Services with the TcpClient Class Galt CA
- .NET Tip: Testing Network Services with the TcpClient Class Garden Grove CA
- .NET Tip: Testing Network Services with the TcpClient Class Gardena CA
- .NET Tip: Testing Network Services with the TcpClient Class Gilroy CA
- .NET Tip: Testing Network Services with the TcpClient Class Glendale CA
- .NET Tip: Testing Network Services with the TcpClient Class Glendora CA
- .NET Tip: Testing Network Services with the TcpClient Class Goleta CA
- .NET Tip: Testing Network Services with the TcpClient Class Granada Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class Granite Bay CA
- .NET Tip: Testing Network Services with the TcpClient Class Grass Valley CA
- .NET Tip: Testing Network Services with the TcpClient Class Hacienda Heights CA
- .NET Tip: Testing Network Services with the TcpClient Class Half Moon Bay CA
- .NET Tip: Testing Network Services with the TcpClient Class Hanford CA
- .NET Tip: Testing Network Services with the TcpClient Class Harbor City CA
- .NET Tip: Testing Network Services with the TcpClient Class Hawaiian Gardens CA
- .NET Tip: Testing Network Services with the TcpClient Class Hawthorne CA
- .NET Tip: Testing Network Services with the TcpClient Class Hayward CA
- .NET Tip: Testing Network Services with the TcpClient Class Healdsburg CA
- .NET Tip: Testing Network Services with the TcpClient Class Hemet CA
- .NET Tip: Testing Network Services with the TcpClient Class Hercules CA
- .NET Tip: Testing Network Services with the TcpClient Class Hermosa Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Hesperia CA
- .NET Tip: Testing Network Services with the TcpClient Class Highland CA
- .NET Tip: Testing Network Services with the TcpClient Class Hollister CA
- .NET Tip: Testing Network Services with the TcpClient Class Huntington Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Huntington Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Imperial Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Indio CA
- .NET Tip: Testing Network Services with the TcpClient Class Inglewood CA
- .NET Tip: Testing Network Services with the TcpClient Class Irvine CA
- .NET Tip: Testing Network Services with the TcpClient Class King City CA
- .NET Tip: Testing Network Services with the TcpClient Class La Canada Flintridge CA
- .NET Tip: Testing Network Services with the TcpClient Class La Crescenta CA
- .NET Tip: Testing Network Services with the TcpClient Class La Habra CA
- .NET Tip: Testing Network Services with the TcpClient Class La Jolla CA
- .NET Tip: Testing Network Services with the TcpClient Class La Mesa CA
- .NET Tip: Testing Network Services with the TcpClient Class La Mirada CA
- .NET Tip: Testing Network Services with the TcpClient Class La Palma CA
- .NET Tip: Testing Network Services with the TcpClient Class La Puente CA
- .NET Tip: Testing Network Services with the TcpClient Class La Quinta CA
- .NET Tip: Testing Network Services with the TcpClient Class La Verne CA
- .NET Tip: Testing Network Services with the TcpClient Class Laguna Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Laguna Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class Laguna Niguel CA
- .NET Tip: Testing Network Services with the TcpClient Class Lake Elsinore CA
- .NET Tip: Testing Network Services with the TcpClient Class Lake Forest CA
- .NET Tip: Testing Network Services with the TcpClient Class Lakeside CA
- .NET Tip: Testing Network Services with the TcpClient Class Lakewood CA
- .NET Tip: Testing Network Services with the TcpClient Class Lamont CA
- .NET Tip: Testing Network Services with the TcpClient Class Lancaster CA
- .NET Tip: Testing Network Services with the TcpClient Class Lawndale CA
- .NET Tip: Testing Network Services with the TcpClient Class Lemon Grove CA
- .NET Tip: Testing Network Services with the TcpClient Class Lemoore CA
- .NET Tip: Testing Network Services with the TcpClient Class Livermore CA
- .NET Tip: Testing Network Services with the TcpClient Class Lodi CA
- .NET Tip: Testing Network Services with the TcpClient Class Loma Linda CA
- .NET Tip: Testing Network Services with the TcpClient Class Lomita CA
- .NET Tip: Testing Network Services with the TcpClient Class Lompoc CA
- .NET Tip: Testing Network Services with the TcpClient Class Long Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Los Alamitos CA
- .NET Tip: Testing Network Services with the TcpClient Class Los Altos CA
- .NET Tip: Testing Network Services with the TcpClient Class Los Angeles CA
- .NET Tip: Testing Network Services with the TcpClient Class Los Banos CA
- .NET Tip: Testing Network Services with the TcpClient Class Los Gatos CA
- .NET Tip: Testing Network Services with the TcpClient Class Los Osos CA
- .NET Tip: Testing Network Services with the TcpClient Class Lynwood CA
- .NET Tip: Testing Network Services with the TcpClient Class Madera CA
- .NET Tip: Testing Network Services with the TcpClient Class Malibu CA
- .NET Tip: Testing Network Services with the TcpClient Class Manhattan Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Manteca CA
- .NET Tip: Testing Network Services with the TcpClient Class Marina CA
- .NET Tip: Testing Network Services with the TcpClient Class Marina Del Rey CA
- .NET Tip: Testing Network Services with the TcpClient Class Martinez CA
- .NET Tip: Testing Network Services with the TcpClient Class Marysville CA
- .NET Tip: Testing Network Services with the TcpClient Class Maywood CA
- .NET Tip: Testing Network Services with the TcpClient Class Mckinleyville CA
- .NET Tip: Testing Network Services with the TcpClient Class Menlo Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Merced CA
- .NET Tip: Testing Network Services with the TcpClient Class Mill Valley CA
- .NET Tip: Testing Network Services with the TcpClient Class Millbrae CA
- .NET Tip: Testing Network Services with the TcpClient Class Milpitas CA
- .NET Tip: Testing Network Services with the TcpClient Class Mira Loma CA
- .NET Tip: Testing Network Services with the TcpClient Class Mission Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class Mission Viejo CA
- .NET Tip: Testing Network Services with the TcpClient Class Modesto CA
- .NET Tip: Testing Network Services with the TcpClient Class Monrovia CA
- .NET Tip: Testing Network Services with the TcpClient Class Montclair CA
- .NET Tip: Testing Network Services with the TcpClient Class Montebello CA
- .NET Tip: Testing Network Services with the TcpClient Class Monterey CA
- .NET Tip: Testing Network Services with the TcpClient Class Monterey Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Moorpark CA
- .NET Tip: Testing Network Services with the TcpClient Class Moraga CA
- .NET Tip: Testing Network Services with the TcpClient Class Moreno Valley CA
- .NET Tip: Testing Network Services with the TcpClient Class Morgan Hill CA
- .NET Tip: Testing Network Services with the TcpClient Class Mountain View CA
- .NET Tip: Testing Network Services with the TcpClient Class Murrieta CA
- .NET Tip: Testing Network Services with the TcpClient Class Napa CA
- .NET Tip: Testing Network Services with the TcpClient Class National City CA
- .NET Tip: Testing Network Services with the TcpClient Class Nevada City CA
- .NET Tip: Testing Network Services with the TcpClient Class Newark CA
- .NET Tip: Testing Network Services with the TcpClient Class Newbury Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Newhall CA
- .NET Tip: Testing Network Services with the TcpClient Class Newport Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Nipomo CA
- .NET Tip: Testing Network Services with the TcpClient Class Norco CA
- .NET Tip: Testing Network Services with the TcpClient Class North Highlands CA
- .NET Tip: Testing Network Services with the TcpClient Class North Hills CA
- .NET Tip: Testing Network Services with the TcpClient Class North Hollywood CA
- .NET Tip: Testing Network Services with the TcpClient Class Northridge CA
- .NET Tip: Testing Network Services with the TcpClient Class Norwalk CA
- .NET Tip: Testing Network Services with the TcpClient Class Novato CA
- .NET Tip: Testing Network Services with the TcpClient Class Oakdale CA
- .NET Tip: Testing Network Services with the TcpClient Class Oakland CA
- .NET Tip: Testing Network Services with the TcpClient Class Oakley CA
- .NET Tip: Testing Network Services with the TcpClient Class Oceanside CA
- .NET Tip: Testing Network Services with the TcpClient Class Ojai CA
- .NET Tip: Testing Network Services with the TcpClient Class Ontario CA
- .NET Tip: Testing Network Services with the TcpClient Class Orange CA
- .NET Tip: Testing Network Services with the TcpClient Class Orangevale CA
- .NET Tip: Testing Network Services with the TcpClient Class Orinda CA
- .NET Tip: Testing Network Services with the TcpClient Class Oroville CA
- .NET Tip: Testing Network Services with the TcpClient Class Oxnard CA
- .NET Tip: Testing Network Services with the TcpClient Class Pacific Grove CA
- .NET Tip: Testing Network Services with the TcpClient Class Pacific Palisades CA
- .NET Tip: Testing Network Services with the TcpClient Class Pacifica CA
- .NET Tip: Testing Network Services with the TcpClient Class Pacoima CA
- .NET Tip: Testing Network Services with the TcpClient Class Palm Desert CA
- .NET Tip: Testing Network Services with the TcpClient Class Palm Springs CA
- .NET Tip: Testing Network Services with the TcpClient Class Palmdale CA
- .NET Tip: Testing Network Services with the TcpClient Class Palo Alto CA
- .NET Tip: Testing Network Services with the TcpClient Class Palos Verdes Peninsula CA
- .NET Tip: Testing Network Services with the TcpClient Class Panorama City CA
- .NET Tip: Testing Network Services with the TcpClient Class Paradise CA
- .NET Tip: Testing Network Services with the TcpClient Class Paramount CA
- .NET Tip: Testing Network Services with the TcpClient Class Pasadena CA
- .NET Tip: Testing Network Services with the TcpClient Class Paso Robles CA
- .NET Tip: Testing Network Services with the TcpClient Class Patterson CA
- .NET Tip: Testing Network Services with the TcpClient Class Perris CA
- .NET Tip: Testing Network Services with the TcpClient Class Petaluma CA
- .NET Tip: Testing Network Services with the TcpClient Class Pico Rivera CA
- .NET Tip: Testing Network Services with the TcpClient Class Pinole CA
- .NET Tip: Testing Network Services with the TcpClient Class Pittsburg CA
- .NET Tip: Testing Network Services with the TcpClient Class Placentia CA
- .NET Tip: Testing Network Services with the TcpClient Class Placerville CA
- .NET Tip: Testing Network Services with the TcpClient Class Pleasant Hill CA
- .NET Tip: Testing Network Services with the TcpClient Class Pleasanton CA
- .NET Tip: Testing Network Services with the TcpClient Class Pomona CA
- .NET Tip: Testing Network Services with the TcpClient Class Port Hueneme CA
- .NET Tip: Testing Network Services with the TcpClient Class Porterville CA
- .NET Tip: Testing Network Services with the TcpClient Class Poway CA
- .NET Tip: Testing Network Services with the TcpClient Class Ramona CA
- .NET Tip: Testing Network Services with the TcpClient Class Rancho Cordova CA
- .NET Tip: Testing Network Services with the TcpClient Class Rancho Cucamonga CA
- .NET Tip: Testing Network Services with the TcpClient Class Rancho Palos Verdes CA
- .NET Tip: Testing Network Services with the TcpClient Class Rancho Santa Margarita CA
- .NET Tip: Testing Network Services with the TcpClient Class Red Bluff CA
- .NET Tip: Testing Network Services with the TcpClient Class Redding CA
- .NET Tip: Testing Network Services with the TcpClient Class Redlands CA
- .NET Tip: Testing Network Services with the TcpClient Class Redondo Beach CA
- .NET Tip: Testing Network Services with the TcpClient Class Redwood City CA
- .NET Tip: Testing Network Services with the TcpClient Class Reedley CA
- .NET Tip: Testing Network Services with the TcpClient Class Reseda CA
- .NET Tip: Testing Network Services with the TcpClient Class Rialto CA
- .NET Tip: Testing Network Services with the TcpClient Class Richmond CA
- .NET Tip: Testing Network Services with the TcpClient Class Ridgecrest CA
- .NET Tip: Testing Network Services with the TcpClient Class Riverbank CA
- .NET Tip: Testing Network Services with the TcpClient Class Riverside CA
- .NET Tip: Testing Network Services with the TcpClient Class Rocklin CA
- .NET Tip: Testing Network Services with the TcpClient Class Rohnert Park CA
- .NET Tip: Testing Network Services with the TcpClient Class Rosamond CA
- .NET Tip: Testing Network Services with the TcpClient Class Rosemead CA
- .NET Tip: Testing Network Services with the TcpClient Class Roseville CA
- .NET Tip: Testing Network Services with the TcpClient Class Rowland Heights CA
- .NET Tip: Testing Network Services with the TcpClient Class Sacramento CA
- .NET Tip: Testing Network Services with the TcpClient Class Salinas CA
- .NET Tip: Testing Network Services with the TcpClient Class San Anselmo CA
- .NET Tip: Testing Network Services with the TcpClient Class San Bernardino CA
- .NET Tip: Testing Network Services with the TcpClient Class San Bruno CA
- .NET Tip: Testing Network Services with the TcpClient Class San Carlos CA
- .NET Tip: Testing Network Services with the TcpClient Class San Clemente CA
- .NET Tip: Testing Network Services with the TcpClient Class San Diego CA
- .NET Tip: Testing Network Services with the TcpClient Class San Dimas CA
- .NET Tip: Testing Network Services with the TcpClient Class San Fernando CA
- .NET Tip: Testing Network Services with the TcpClient Class San Francisco CA
- .NET Tip: Testing Network Services with the TcpClient Class San Gabriel CA
- .NET Tip: Testing Network Services with the TcpClient Class San Jacinto CA
- .NET Tip: Testing Network Services with the TcpClient Class San Jose CA
- .NET Tip: Testing Network Services with the TcpClient Class San Juan Capistrano CA
- .NET Tip: Testing Network Services with the TcpClient Class San Leandro CA
- .NET Tip: Testing Network Services with the TcpClient Class San Lorenzo CA
- .NET Tip: Testing Network Services with the TcpClient Class San Luis Obispo CA
- .NET Tip: Testing Network Services with the TcpClient Class San Marcos CA
- .NET Tip: Testing Network Services with the TcpClient Class San Mateo CA
- .NET Tip: Testing Network Services with the TcpClient Class San Pablo CA
- .NET Tip: Testing Network Services with the TcpClient Class San Pedro CA
- .NET Tip: Testing Network Services with the TcpClient Class San Rafael CA
- .NET Tip: Testing Network Services with the TcpClient Class San Ramon CA
- .NET Tip: Testing Network Services with the TcpClient Class San Ysidro CA
- .NET Tip: Testing Network Services with the TcpClient Class Sanger CA
-