2 implementations of Translate
Microsoft.Build.Framework (2)
BinaryTranslator.cs (2)
184public void Translate(ref uint unsignedInteger) => unsignedInteger = _reader.ReadUInt32(); 939public void Translate(ref uint unsignedInteger) => _writer.Write(unsignedInteger);
7 references to Translate
Microsoft.Build (7)
FileAccess\FileAccessData.cs (4)
137translator.Translate(ref _processId); 138translator.Translate(ref _id); 139translator.Translate(ref _correlationId); 140translator.Translate(ref _error);
FileAccess\ProcessData.cs (3)
78translator.Translate(ref _processId); 79translator.Translate(ref _parentProcessId); 82translator.Translate(ref _exitCode);