2 implementations of TranslateEnum
MSBuildTaskHost (2)
BinaryTranslator.cs (2)
488public void TranslateEnum<T>(ref T value, int numericValue) 1187public void TranslateEnum<T>(ref T value, int numericValue)
14 references to TranslateEnum
MSBuildTaskHost (14)
LogMessagePacketBase.cs (5)
405translator.TranslateEnum(ref _eventType, (int)_eventType); 968translator.TranslateEnum(ref importance, (int)importance); 983translator.TranslateEnum(ref importance, (int)importance); 1332translator.TranslateEnum(ref importance, (int)importance); 1351translator.TranslateEnum(ref importance, (int)importance);
NodeShutdown.cs (1)
107translator.TranslateEnum(ref _reason, (int)_reason);
TaskHostTaskComplete.cs (1)
240translator.TranslateEnum(ref _taskResult, (int)_taskResult);
TaskParameter.cs (3)
227translator.TranslateEnum(ref _parameterType, (int)_parameterType); 507translator.TranslateEnum(ref _parameterTypeCode, (int)_parameterTypeCode); 582translator.TranslateEnum(ref _parameterTypeCode, (int)_parameterTypeCode);
TranslatorHelpers.cs (4)
252translator.TranslateEnum(ref flags, (int)flags); 253translator.TranslateEnum(ref processorArchitecture, (int)processorArchitecture); 255translator.TranslateEnum(ref hashAlgorithm, (int)hashAlgorithm); 256translator.TranslateEnum(ref versionCompatibility, (int)versionCompatibility);