Ejemplo n.º 1
0
 internal void Update(string instanceIdentity, ReplicationCheckResult newResult, string newErrorMessage, uint?dbFailureEventId)
 {
     this.Identity         = instanceIdentity;
     this.Result           = newResult;
     this.Error            = newErrorMessage;
     this.DbFailureEventId = dbFailureEventId;
 }
 internal ReplicationCheckOutcome(string serverName, string checktitle, string checkdescription, ReplicationCheckResult result1, string errorMsg) : base(new SimpleProviderPropertyBag())
 {
     this.Server           = serverName;
     this.Check            = checktitle;
     this.CheckDescription = checkdescription;
     this.Result           = result1;
     this.Error            = errorMsg;
 }
 internal void Update(ReplicationCheckResult newResult, string newErrorMessage)
 {
     this.Result = newResult;
     this.Error  = newErrorMessage;
 }
Ejemplo n.º 4
0
 internal void Update(string instanceIdentity, ReplicationCheckResult newResult, string newErrorMessage)
 {
     this.Update(instanceIdentity, newResult, newErrorMessage, null);
 }