2 implementations of TranslateEnum
MSBuildTaskHost (2)
BinaryTranslator.cs (2)
492public void TranslateEnum<T>(ref T value, int numericValue) 1255public void TranslateEnum<T>(ref T value, int numericValue)
14 references to TranslateEnum
MSBuildTaskHost (14)
LogMessagePacketBase.cs (5)
391translator.TranslateEnum(ref _eventType, (int)_eventType); 909translator.TranslateEnum(ref importance, (int)importance); 924translator.TranslateEnum(ref importance, (int)importance); 1273translator.TranslateEnum(ref importance, (int)importance); 1292translator.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)
225translator.TranslateEnum(ref _parameterType, (int)_parameterType); 505translator.TranslateEnum(ref _parameterTypeCode, (int)_parameterTypeCode); 580translator.TranslateEnum(ref _parameterTypeCode, (int)_parameterTypeCode);
TranslatorHelpers.cs (4)
314translator.TranslateEnum(ref flags, (int)flags); 315translator.TranslateEnum(ref processorArchitecture, (int)processorArchitecture); 317translator.TranslateEnum(ref hashAlgorithm, (int)hashAlgorithm); 318translator.TranslateEnum(ref versionCompatibility, (int)versionCompatibility);