Beispiel #1
0
/// <summary>
///     Returns true if self and the provided entity have the same Id values
///     and the Ids are not of the default Id value
/// </summary>
        protected bool HasSameNonDefaultIdAs(RequestLog compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.RequestLogKey.Equals(compareTo.RequestLogKey));
        }
Beispiel #2
0
/// <summary>
/// Copies the current object to a new instance
/// </summary>
/// <param name="deep">Copy members that refer to objects external to this class (not dependent)</param>
/// <param name="copiedObjects">Objects that should be reused</param>
/// <param name="asNew">Copy the current object as a new one, ready to be persisted, along all its members.</param>
/// <param name="reuseNestedObjects">If asNew is true, this flag if set, forces the reuse of all external objects.</param>
/// <param name="copy">Optional - An existing [RequestLog] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual RequestLog Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, RequestLog copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((RequestLog)copiedObjects[this]);
            }
            copy = copy ?? new RequestLog();
            if (!asNew)
            {
                copy.TransientId   = this.TransientId;
                copy.RequestLogKey = this.RequestLogKey;
            }
            copy.RequestPath   = this.RequestPath;
            copy.Message       = this.Message;
            copy.RequestId     = this.RequestId;
            copy.RequestMethod = this.RequestMethod;
            copy.ElapsedMsecs  = this.ElapsedMsecs;
            copy.IP            = this.IP;
            copy.Service       = this.Service;
            copy.Operation     = this.Operation;
            copy.StatusCode    = this.StatusCode;
            copy.Timestamp     = this.Timestamp;
            copy.Username      = this.Username;
            copy.RequestUri    = this.RequestUri;
            copy.ClientId      = this.ClientId;
            copy.ClientName    = this.ClientName;
            copy.ProductName   = this.ProductName;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            return(copy);
        }