예제 #1
0
        public void CopyFrom(ErrorBucket donor)
        {
            // copy the normal errors...
            this.Errors.Clear();
            this.Errors.AddRange(donor.Errors);

            // copy the fatal error...
            this.Fatal = donor.Fatal;
        }
예제 #2
0
        public void CopyFrom(ErrorBucket donor)
        {
            // copy the normal errors...
            this.Errors.Clear();
            this.Errors.AddRange(donor.Errors);

            // copy the fatal error...
            this.Fatal = donor.Fatal;
        }
예제 #3
0
 // special constructor for cloning another error bucket...
 protected ErrorBucket(ErrorBucket donor)
     : this()
 {
     CopyFrom(donor);
 }
예제 #4
0
 // special constructor for cloning another error bucket...
 protected ErrorBucket(ErrorBucket donor)
     : this()
 {
     CopyFrom(donor);
 }