ip address in silverlight - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:56:02Z http://stackoverflow.com/feeds/question/858318 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/858318/ip-address-in-silverlight 2 ip address in silverlight Usman Masood 2009-05-13T14:32:44Z 2009-05-13T14:38:21Z <p>is there a way to get ip address of client in silverlight if my silverlight control is hosted in html.?</p> http://stackoverflow.com/questions/858318/ip-address-in-silverlight/858326#858326 0 Answer by Chris Ballance for ip address in silverlight Chris Ballance 2009-05-13T14:35:06Z 2009-05-13T14:35:06Z <p>Try the methods listed below (first one should usually do the trick), or see <a href="http://michaelsync.net/2008/04/07/silverlight-2-beta1-url-referrer-screen-resolution-clients-data-time-and-ip-address" rel="nofollow">here</a> for more info.</p> <pre><code>Request.ServerVariables(”REMOTE_HOST”) HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"] HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; Request.UserHostAddress() Request.UserHostName() string strHostName = System.Net.Dns.GetHostName(); string clientIPAddress = System.Net.Dns.GetHostAddresses(strHostName).GetValue(0).ToString(); </code></pre> http://stackoverflow.com/questions/858318/ip-address-in-silverlight/858342#858342 2 Answer by NinethSense for ip address in silverlight NinethSense 2009-05-13T14:38:21Z 2009-05-13T14:38:21Z <p>As far as I know there are no direct ways to do this. May be you can create a WebMethod to achieve this. Or some other tricks.</p> <p>Check this thread, there are some suggestions: <a href="http://silverlight.net/forums/t/34744.aspx" rel="nofollow">http://silverlight.net/forums/t/34744.aspx</a></p>