23 lines
849 B
Plaintext
23 lines
849 B
Plaintext
|
|
using DTS.Common.Interface.DASFactory;
|
||
|
|
|
||
|
|
namespace DTS.DASLib.Service
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// this class handles the data passed to consumers during a DASConfigurationEvent
|
||
|
|
/// 17872 Use DASConfig XMLs on disk when performing an emergency download with DAS that have blank filestore(s)
|
||
|
|
/// </summary>
|
||
|
|
public class DASConfigurationArg : IDASConfigurationArg
|
||
|
|
{
|
||
|
|
public IDASCommunication DAS { get; private set; }
|
||
|
|
public bool BlankConfigurationRead { get; private set; }
|
||
|
|
public bool ConfigurationFailedValidation { get; private set; }
|
||
|
|
|
||
|
|
public DASConfigurationArg(IDASCommunication das, bool blankRead, bool failedValidation)
|
||
|
|
{
|
||
|
|
DAS = das;
|
||
|
|
BlankConfigurationRead = blankRead;
|
||
|
|
ConfigurationFailedValidation = failedValidation;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|