5 references to ReadByte
Microsoft.CodeAnalysis (5)
StrongName\CryptoBlobParser.cs (5)
107
var publicKey = blobReader.
ReadByte
();
215
byte bType = br.
ReadByte
(); // BLOBHEADER.bType: Expected to be 0x6 (PUBLICKEYBLOB) or 0x7 (PRIVATEKEYBLOB), though there's no check for backward compat reasons.
216
byte bVersion = br.
ReadByte
(); // BLOBHEADER.bVersion: Expected to be 0x2, though there's no check for backward compat reasons.
261
byte bType = br.
ReadByte
(); // BLOBHEADER.bType: Expected to be 0x6 (PUBLICKEYBLOB) or 0x7 (PRIVATEKEYBLOB), though there's no check for backward compat reasons.
262
byte bVersion = br.
ReadByte
(); // BLOBHEADER.bVersion: Expected to be 0x2, though there's no check for backward compat reasons.