Exemplo n.º 1
0
        public object Clone()
        {
            StackHashDumpAnalysis dumpAnalysis = null;

            if (this.DumpAnalysis != null)
            {
                dumpAnalysis = (StackHashDumpAnalysis)this.DumpAnalysis.Clone();
            }

            return(new StackHashCab(this.DateCreatedLocal, this.DateModifiedLocal, this.EventId, this.EventTypeName, this.FileName,
                                    this.Id, this.SizeInBytes, this.CabDownloaded, this.Purged, dumpAnalysis));
        }
Exemplo n.º 2
0
        public StackHashCab(DateTime dateCreatedLocal, DateTime dateModifiedLocal,
                            int eventId, string eventTypeName, string fileName, int id, long sizeInBytes, bool cabDownloaded, bool purged, StackHashDumpAnalysis dumpAnalysis)
        {
            m_StructureVersion = s_ThisStructureVersion;

            m_DateCreatedLocal  = dateCreatedLocal;
            m_DateModifiedLocal = dateModifiedLocal;
            m_EventId           = eventId;
            m_EventTypeName     = eventTypeName;
            m_FileName          = fileName;
            m_Id            = id;
            m_SizeInBytes   = sizeInBytes;
            m_CabDownloaded = cabDownloaded;
            m_Purged        = purged;
            m_DumpAnalysis  = dumpAnalysis;
        }