5 references to UnmanagedType
System.Reflection.MetadataLoadContext (5)
System\Reflection\MetadataLoadContext.KnownConstructors.cs (1)
32internal ConstructorInfo? TryGetMarshalAsCtor() => _lazyMarshalAs ??= TryGetConstructor(CoreType.MarshalAsAttribute, CoreType.UnmanagedType);
System\Reflection\TypeLoading\CustomAttributes\CustomAttributeHelpers.cs (3)
92ct[CoreType.UnmanagedType] == null || 112CustomAttributeTypedArgument[] cats = { new CustomAttributeTypedArgument(ct[CoreType.UnmanagedType]!, (int)(ma.Value)) }; 116attributeType.ToCustomAttributeNamedArgument(nameof(MarshalAsAttribute.ArraySubType), ct[CoreType.UnmanagedType], (int)ma.ArraySubType),
System\Reflection\TypeLoading\General\CoreType.cs (1)
121case CoreType.UnmanagedType: ns = Utf8Constants.SystemRuntimeInteropServices; name = Utf8Constants.UnmanagedType; return;