Simple Client Model for ExceptionLog
Exemple #1
0
 /// <summary>
 /// Copies the base properties from a source ExceptionLog object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( ExceptionLog source )
 {
     this.Id = source.Id;
     this.Cookies = source.Cookies;
     this.Description = source.Description;
     this.ExceptionType = source.ExceptionType;
     this.Form = source.Form;
     this.HasInnerException = source.HasInnerException;
     this.PageId = source.PageId;
     this.PageUrl = source.PageUrl;
     this.ParentId = source.ParentId;
     this.QueryString = source.QueryString;
     this.ServerVariables = source.ServerVariables;
     this.SiteId = source.SiteId;
     this.Source = source.Source;
     this.StackTrace = source.StackTrace;
     this.StatusCode = source.StatusCode;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Exemple #2
0
 /// <summary>
 /// Copies the base properties from a source ExceptionLog object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( ExceptionLog source )
 {
     this.Id = source.Id;
     this.Cookies = source.Cookies;
     this.Description = source.Description;
     this.ExceptionType = source.ExceptionType;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.Form = source.Form;
     this.HasInnerException = source.HasInnerException;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.PageId = source.PageId;
     this.PageUrl = source.PageUrl;
     this.ParentId = source.ParentId;
     this.QueryString = source.QueryString;
     this.ServerVariables = source.ServerVariables;
     this.SiteId = source.SiteId;
     this.Source = source.Source;
     this.StackTrace = source.StackTrace;
     this.StatusCode = source.StatusCode;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }