示例#1
0
 // Token: 0x06000D03 RID: 3331 RVA: 0x0003959C File Offset: 0x0003779C
 public FailureInfo(FailureInfo other)
 {
     this.m_brokenFlags  = other.m_brokenFlags;
     this.m_errorEventId = other.m_errorEventId;
     if (!other.m_errorMessage.IsEmpty)
     {
         this.m_errorMessage = new LocalizedString(other.m_errorMessage);
     }
     if (other.m_extendedErrorInfo != null)
     {
         this.m_extendedErrorInfo = new ExtendedErrorInfo(other.m_extendedErrorInfo.FailureException);
     }
 }
示例#2
0
 public ReplicaInstanceContextMinimal(ReplicaInstanceContext previousContext)
 {
     this.Suspended      = previousContext.Suspended;
     this.LastCopyStatus = previousContext.GetStatus();
     this.FailureInfo    = new FailureInfo(previousContext.FailureInfo);
 }