public void ReadConfig(out LeasingConfig c)
        {
            uncSharePath = Smb2Utility.GetUncPath(testConfig.SutIPAddress.ToString(), testConfig.BasicFileShare);

            c = new LeasingConfig
            {
                MaxSmbVersionSupported = ModelUtility.GetModelDialectRevision(testConfig.MaxSmbVersionSupported),
                IsLeasingSupported = testConfig.IsLeasingSupported,
                IsDirectoryLeasingSupported = testConfig.IsDirectoryLeasingSupported,
            };

            leasingConfig = c;

            Site.Log.Add(LogEntryKind.Debug, leasingConfig.ToString());
        }