Invoking a URL - c#
Posted
by user177883
on Stack Overflow
See other posts from Stack Overflow
or by user177883
Published on 2010-04-30T13:35:28Z
Indexed on
2010/04/30
13:37 UTC
Read the original article
Hit count: 261
I m trying to invoke a URL in C#, I am just interested in invoking, and dont care about response. When i have the following, does it mean that I m invoking the URL?
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
© Stack Overflow or respective owner