01.
02.
03.
04.
05.
06.
07.
08.
09.
10.
11.
string
computerName = System.Net.Dns.GetHostName();
12.
System.Net.IPHostEntry ipEntry = System.Net.Dns.GetHostEntry(computerName);
13.
System.Net.IPAddress[] ipAddress = ipEntry.AddressList;
14.
15.
computerName = computerName +
"|"
+ ipAddress[0].ToString();
16.
17.
throw
new
Exception(computerName);
18.
return
;
19.
20.
21.
var dsf = filterContext.HttpContext.ApplicationInstance.Server.MachineName;
22.
23.
var _Client = filterContext.HttpContext.Request.LogonUserIdentity;
24.
var Domain = _Client.Name.Split(
'\\'
);