77 references to ReadUInt32
mscorlib (3)
system\resources\resourcereader.cs (2)
630return _store.ReadUInt32(); 713return _store.ReadUInt32();
system\runtime\serialization\formatters\binary\binaryparser.cs (1)
372return dataReader.ReadUInt32();
PresentationCore (10)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (2)
634val[i] = br.ReadUInt32(); 706return br.ReadUInt32();
Core\CSharp\System\Windows\Media\MediaEventsHelper.cs (4)
281avEventType = (AVEvent)reader.ReadUInt32(); 282failureHr = (int)reader.ReadUInt32(); 372int parameterTypeLength = (int)reader.ReadUInt32(); 373int parameterValueLength = (int)reader.ReadUInt32();
Core\CSharp\System\Windows\Media\PointCollection.cs (1)
34uint count = reader.ReadUInt32() ;
Core\CSharp\System\Windows\Media\SolidColorBrush.cs (1)
167uint knownColorUint = reader.ReadUInt32();
Core\CSharp\System\Windows\Media3D\Point3DCollection.cs (1)
41uint count = reader.ReadUInt32() ;
Core\CSharp\System\Windows\Media3D\Vector3DCollection.cs (1)
35uint count = reader.ReadUInt32() ;
PresentationFramework (1)
src\Framework\System\Windows\Markup\BamlRecords.cs (1)
2830enumBits = reader.ReadUInt32();
System.AddIn (31)
System\Addin\MiniReflection\MetadataReader\Metadata.cs (5)
252NRows[Table] = B.ReadUInt32(); 377else return B.ReadUInt32(); 459return B.ReadUInt32(); 467return B.ReadUInt32(); 497UInt32 Code = (MetadataTokenSize(E) == 2) ? B.ReadUInt16() : B.ReadUInt32();
System\Addin\MiniReflection\MetadataReader\PEFileReader.cs (13)
19this.offset = B.ReadUInt32(); 21/*Size =*/ B.ReadUInt32(); 65UInt32 signatureAt = B.ReadUInt32(); 91UInt32 CLIHeaderRVA = B.ReadUInt32(); 141this.Size = B.ReadUInt32(); 142this.VirtualAddress = B.ReadUInt32(); 143B.ReadUInt32(); // SizeOfRawData 144this.FileOffset = B.ReadUInt32(); 204UInt32 MetaDataRVA = B.ReadUInt32(); 205UInt32 MetaDataSize = B.ReadUInt32(); 213UInt32 VersionLength = B.ReadUInt32(); 351UInt32 HashAlgorithm = B.ReadUInt32(); 357UInt32 AssemblyFlags = B.ReadUInt32();
System\Addin\MiniReflection\MiniAssembly.cs (4)
80MDFileAttributes attrs = (MDFileAttributes) metaData.B.ReadUInt32(); 110peFile.B.ReadUInt32(); // TypeAttributes 149peFile.B.ReadUInt32(); // AssemblyFlags 287UInt32 assemblyFlags = B.ReadUInt32();
System\Addin\MiniReflection\MiniModule.cs (1)
173System.Reflection.TypeAttributes flags = (System.Reflection.TypeAttributes) _peFile.B.ReadUInt32();
System\Addin\MiniReflection\TypeInfo.cs (8)
88peFile.B.ReadUInt32(); // TypeAttributes; 156peFile.B.ReadUInt32(); // assembly flags 320System.Reflection.TypeAttributes attrs = (System.Reflection.TypeAttributes) peFile.B.ReadUInt32(); // TypeAttributes; 424peFile.B.ReadUInt32(); // TypeAttributes; 487System.Reflection.TypeAttributes flags = (System.Reflection.TypeAttributes) peFile.B.ReadUInt32(); 508peFile.B.ReadUInt32(); // Flags 522UInt32 rva = peFile.B.ReadUInt32(); 802mdScope.B.ReadUInt32(); // TypeAttributes
System.Web (2)
Util\altserialization.cs (2)
231value = reader.ReadUInt32(); 261value = new UIntPtr(reader.ReadUInt32());
WindowsBase (30)
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryDigitalSignature.cs (1)
62UInt32 signatureValue = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (7)
61header._signature = reader.ReadUInt32(); 66header._lastModFileDateTime = reader.ReadUInt32(); 67header._crc32 = reader.ReadUInt32(); 68header._compressedSize = reader.ReadUInt32(); 69header._uncompressedSize = reader.ReadUInt32(); 75header._externalFileAttributes = reader.ReadUInt32(); 76header._relativeOffsetOfLocalHeader = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOEndOfCentralDirectoryBlock.cs (3)
380_signature = reader.ReadUInt32(); 385_sizeOfTheCentralDirectory = reader.ReadUInt32(); 386_offsetOfStartOfCentralDirectoryWithRespectToTheStartingDiskNumber = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOExtraFieldZip64Element.cs (1)
101_diskNumber = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOLocalFileDataDescriptor.cs (6)
73buffer[0] = reader.ReadUInt32(); 74buffer[1] = reader.ReadUInt32(); 75buffer[2] = reader.ReadUInt32(); 91buffer[3] = reader.ReadUInt32(); 112buffer[4] = reader.ReadUInt32(); 127buffer[5] = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOLocalFileHeader.cs (5)
102header._signature = reader.ReadUInt32(); 106header._lastModFileDateTime = reader.ReadUInt32(); 107header._crc32 = reader.ReadUInt32(); 108header._compressedSize = reader.ReadUInt32(); 109header._uncompressedSize = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOZip64EndOfCentralDirectoryBlock.cs (3)
267_signature = reader.ReadUInt32(); 271_numberOfThisDisk = reader.ReadUInt32(); 272_numberOfTheDiskWithTheStartOfTheCentralDirectory = reader.ReadUInt32();
Base\MS\Internal\IO\Zip\ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs (4)
206UInt32 signature = blockManager.BinaryReader.ReadUInt32(); 226_signature = reader.ReadUInt32(); 227_numberOfTheDiskWithTheStartOfZip64EndOfCentralDirectory = reader.ReadUInt32(); 229_totalNumberOfDisks = reader.ReadUInt32();