AzureSiteReplicator.Data.StatusFile.StatusFile C# (CSharp) Method

StatusFile() public method

public StatusFile ( string siteName ) : System
siteName string
return System
        public StatusFile(string siteName)
        {
            _siteName = siteName;
            _filePath = Path.Combine(
                            Environment.Instance.SiteReplicatorPath,
                            siteName);

            _filePath = Path.Combine(_filePath, "status.xml");

            _state = DeployState.NotStarted;
            StartTime = DateTime.MinValue;
            EndTime = DateTime.MinValue;
        }