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