4 overrides of ReadAllBytes
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.LoggingStrongNameProvider.cs (1)
31internal override byte[] ReadAllBytes(string fullPath)
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\TestStrongNameFileSystem.cs (1)
22internal override byte[] ReadAllBytes(string fullPath) => ReadAllBytesFunc(fullPath);
Compilation\ThrowingStrongNameFileSystem.cs (1)
22internal override byte[] ReadAllBytes(string fullPath) => throw new IOException();
Platform\Custom\SigningTestHelpers.cs (1)
98internal override byte[] ReadAllBytes(string fullPath)
3 references to ReadAllBytes
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.LoggingStrongNameProvider.cs (1)
34return base.ReadAllBytes(fullPath);
StrongName\DesktopStrongNameProvider.cs (1)
82var fileContent = ImmutableArray.Create(FileSystem.ReadAllBytes(resolvedKeyFile));
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\TestStrongNameFileSystem.cs (1)
18ReadAllBytesFunc = base.ReadAllBytes;