Sign In
Mariya Atanasova's Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
July 2008
(1)
January 2007
(1)
November 2006
(1)
June 2006
(4)
March 2006
(1)
June, 2006
MSDN Blogs
>
Mariya Atanasova's Blog
>
June, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mariya Atanasova's Blog
Using System.Net tracing to determining if SSL connection has been established with the server
Posted
over 6 years ago
by
mariya
3
Comments
For a detailed blog article on how to use System.Net Tracing go here http://blogs.msdn.com/dgorti/archive/2005/09/18/471003.aspx Please note that this feature is available in versions of the .Net Framework 2.0 (and above). In this concrete example...
Mariya Atanasova's Blog
RemoteEndPoint: Identifying the client from the server side
Posted
over 6 years ago
by
mariya
3
Comments
Variant 1 : When using TcpListener class for our server there are 2 ways to get the underlying client TcpClient client = listener.AcceptTcpClient(); IPEndPoint remoteEP = ( IPEndPoint ) client.Client.RemoteEndPoint; or Socket client...
Mariya Atanasova's Blog
Sending e-mail using SmtpClient and Gmail
Posted
over 6 years ago
by
mariya
9
Comments
The sample below used SmtpClient to send e-mail from your gmail account using your gmail username and password. using System; using System.Net; using System.Net.Mail; namespace GMailSample { class SimpleSmtpSend { static...
Mariya Atanasova's Blog
FtpWebRequest: Does the slash matter?
Posted
over 6 years ago
by
mariya
2
Comments
For those of you who are curious: there is indeed a difference when we use the following uris as parameters for our FtpWebRequest class: ftp://server/ParentDirectory ftp://server/ParentDirectory/ (Note the slash at the end) Let’s say we want...
Page 1 of 1 (4 items)