Base class for recovery point.
Inheritance: ItemContext
 public AzureWorkloadRecoveryConfig(string targetServer, string targetInstance, string restoreRequestType,
                                    RecoveryPointBase recoveryPoint, DateTime pointInTime)
     : base(restoreRequestType, recoveryPoint, pointInTime)
 {
     TargetServer   = targetServer;
     TargetInstance = targetInstance;
 }
Exemple #2
0
 public RecoveryConfigBase(string restoreRequestType, RecoveryPointBase recoveryPoint, DateTime pointInTime)
 {
     RestoreRequestType = restoreRequestType;
     RecoveryPoint      = recoveryPoint;
     PointInTime        = pointInTime;
 }