Ejemplo n.º 1
0
 private void LogInfo()
 {
     LoggerInformation logInfo = new LoggerInformation();
     logInfo.UserName = this.Request.LogonUserIdentity.Name;
     logInfo.RequestUrl = this.Request.Url.AbsoluteUri;
     logInfo.Browser = this.Request.Browser.Browser;
     logInfo.RequestType = this.Request.RequestType;
     logInfo.UserHostAddress = this.Request.UserHostAddress;
     logger.RecordLog(logInfo);
 }
Ejemplo n.º 2
0
 public void RecordLog(LoggerInformation logInfo)
 {
     objContext.LoggerInformations.Add(logInfo);
     objContext.SaveChanges();
 }