Specific introduction to C # programming method of obtaining IP address

Source: Internet
Author: User
Tags servervariables
This article mainly introduces c#http://www.php.cn/wiki/44.html "target=" _blank "> Programming method of acquiring IP address, combined with instance form to analyze C # to obtain the client IP address of the specific implementation techniques, A friend you need can refer to the following

The example in this article describes how C # programming obtains an IP address. Share to everyone for your reference, as follows:

1. Get Client IP

<summary>///get client ip///</summary>///<returns></returns>public String GetClientIp () {  String clientip = "";  if (System.Web.HttpContext.Current! = null)  {    ClientIP = system.web.httpcontext.current.request.servervariables["Http_x_forwarded_for"];    if (string. IsNullOrEmpty (clientip) | | (Clientip.tolower () = = "Unknown"))    {      ClientIP = system.web.httpcontext.current.request.servervariables["Http_x_real_ip"];      if (string. IsNullOrEmpty (ClientIP))      {        ClientIP = system.web.httpcontext.current.request.servervariables["REMOTE_ ADDR "];      }    }    else    {      ClientIP = clientip.split (', ') [0];    }  }  return clientip;}

2. Server-side Get client request IP and client machine name

///<summary>///server-side Get client request IP and client machine name///</summary>public static void  Getclientinfo () {OperationContext context = operationcontext.current; Messageproperties messageproperties = context.  Incomingmessageproperties; Remoteendpointmessageproperty Endpointproperty = Messageproperties[remoteendpointmessageproperty.name] As  Remoteendpointmessageproperty; HttpRequestMessageProperty Requestproperty = Messageproperties[httprequestmessageproperty.name] As  HttpRequestMessageProperty; String clientip =!string. IsNullOrEmpty (requestproperty.headers["X-real-ip"])?  requestproperty.headers["X-real-ip"]: endpointproperty.address;  string clientName = Environment.MachineName; Console.WriteLine ("ClientIP:" + ClientIP + "ClientName:" + clientName);} 
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.