11 references to UInt32
ILAssembler (2)
GrammarVisitor.cs (2)
2514SerializationTypeCode.UInt32 => valueBytes.Length >= 4 ? BitConverter.ToUInt32(valueBytes) : 0u, 4860CILParser.UINT32 => SerializationTypeCode.UInt32,
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.CustomAttribute.cs (2)
167Ecma.SerializationTypeCode.UInt32 => new ConstantUInt32Value { Value = valueReader.ReadUInt32() }, 228Ecma.SerializationTypeCode.UInt32 => new ConstantUInt32Array { Value = GetCustomAttributeConstantArrayElements<uint>(ref valueReader, count) },
Microsoft.CodeAnalysis (3)
MetadataReader\MetadataDecoder.cs (2)
1388case SerializationTypeCode.UInt32: 1508case SerializationTypeCode.UInt32:
MetadataReader\MetadataTypeCodeExtensions.cs (1)
167return SerializationTypeCode.UInt32;
System.Reflection.Emit (1)
System\Reflection\Emit\CustomAttributeWrapper.cs (1)
167SerializationTypeCode.UInt32 => typeof(uint),
System.Reflection.Metadata (3)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (2)
261case SerializationTypeCode.UInt32: 352case SerializationTypeCode.UInt32:
System\Reflection\Metadata\Ecma335\Encoding\BlobEncoders.cs (1)
840public void UInt32() => WriteTypeCode(SerializationTypeCode.UInt32);