ip address in silverlight - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T16:56:02Zhttp://stackoverflow.com/feeds/question/858318http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/858318/ip-address-in-silverlight2ip address in silverlightUsman Masood2009-05-13T14:32:44Z2009-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#8583260Answer by Chris Ballance for ip address in silverlightChris Ballance2009-05-13T14:35:06Z2009-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#8583422Answer by NinethSense for ip address in silverlightNinethSense2009-05-13T14:38:21Z2009-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>