Sort out some common functions

Source: Internet
Author: User

I. C # the client sends data to the specified URL through POST or GET
 

Send request /// <Summary>
/// Send the request
/// </Summary>
/// <Param name = "url"> url </param>
/// <Param name = "parameter"> value to be sent. For example, abc = 4 & bcd = 5 </param>
/// <Param name = "method"> sending method, "POST" or "GET" </param>
/// <Returns> returned results </returns>
Public static string RequestUrl (string url, string parameter, string method)
{
Try
{
HttpWebRequest hwrq = null;
If (method = "POST ")
{
Hwrq = (HttpWebRequest) HttpWebRequest. Create (url );
Hwrq. KeepAlive = false;
Hwrq. ReadWriteTimeout = 10000;
// Hwrq. CookieContainer = cc;
Hwrq. Method = method;
Byte [] postData = System. Text. Encoding. UTF8.GetBytes (parameter );
Hwrq. ContentType = "application/x-www-form-urlencoded ";
Hwrq. ContentLength = postData. Length;
Stream writeStream = hwrq. GetRequestStream ();
WriteStream. Write (postData, 0, postData. Length );
WriteStream. Close ();
}
Else if (method = "GET ")
{
Hwrq
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.