8 references to ReadByte
PresentationCore (1)
System\Windows\Media\Imaging\PropVariant.cs (1)
498array[i] = (sbyte) Marshal.ReadByte(ca.pElems, i);
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
125value = Marshal.ReadByte(ptr, offset);
System.Data.OleDb (1)
System\Data\ProviderBase\DbBuffer.cs (1)
98value = Marshal.ReadByte(ptr, offset);
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (1)
301public static byte ReadByte(IntPtr ptr) => ReadByte(ptr, 0);
System\Runtime\InteropServices\Marshal.NativeAot.cs (1)
201return ReadValueSlow<byte>(ptr, ofs, &ReadByte);
System.Security.Principal.Windows (2)
System\Security\Principal\Win32.cs (2)
60byte Revision = Marshal.ReadByte(binaryForm, 0); 71byte SubAuthorityCount = Marshal.ReadByte(binaryForm, 1);
System.Speech (1)
AudioFormat\AudioFormatConverter.cs (1)
23extraData[i] = Marshal.ReadByte(extraDataPtr, i);