From c7c6bba288295c08a6d125338f5bf5849d3f5bbc Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 13:16:55 +0200 Subject: [PATCH 01/10] [dotnet] Don't claim dynamic code is unsupported when using CoreCLR. Fixes #26430 (#26468) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `$(DynamicCodeSupport)` default dates back to when Mono was the only runtime for iOS/tvOS/Mac Catalyst: it was set to `false` unless the Mono interpreter was enabled. Neither `$(MtouchInterpreter)` nor `$(UseInterpreter)` mean anything for CoreCLR, so on .NET 11 - where CoreCLR is the default runtime - we ended up claiming that dynamic code isn't supported even though it is. That makes ILLink substitute `RuntimeFeature.IsDynamicCodeSupported` with `false` in the trimmed `System.Private.CoreLib`, which in turn breaks libraries that use this feature switch to detect NativeAOT. Entity Framework Core for instance throws "Model building is not supported when publishing with NativeAOT. Use a compiled model." in plain Debug builds. So only default to `false` when dynamic code really isn't available: * NativeAOT. * Mono without the interpreter on iOS/tvOS/Mac Catalyst. In every other case we leave the property alone and let dotnet/sdk pick its default (which is `true`). Note that this comes at a size cost, since `System.Reflection.Emit` is now kept alive: a stock Mac Catalyst app in Release goes from ~21 MB to ~39 MB. Anybody who doesn't need dynamic code can opt out with `false`. Fixes https://github.com/dotnet/macios/issues/26430 🤖 Pull request created by Copilot --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- dotnet/targets/Xamarin.Shared.Sdk.targets | 9 +- .../UnitTests/DynamicCodeSupportTest.cs | 78 + ...lyst-CoreCLR-Interpreter-preservedapis.txt | 1357 +++++++++++++++++ .../MacCatalyst-CoreCLR-Interpreter-size.txt | 12 +- .../MacCatalyst-CoreCLR-R2R-preservedapis.txt | 1357 +++++++++++++++++ .../expected/MacCatalyst-CoreCLR-R2R-size.txt | 14 +- ...TVOS-CoreCLR-Interpreter-preservedapis.txt | 1355 ++++++++++++++++ .../TVOS-CoreCLR-Interpreter-size.txt | 22 +- .../TVOS-CoreCLR-R2R-preservedapis.txt | 1355 ++++++++++++++++ .../expected/TVOS-CoreCLR-R2R-size.txt | 22 +- .../iOS-CoreCLR-Interpreter-preservedapis.txt | 1355 ++++++++++++++++ .../expected/iOS-CoreCLR-Interpreter-size.txt | 24 +- .../iOS-CoreCLR-R2R-preservedapis.txt | 1355 ++++++++++++++++ .../expected/iOS-CoreCLR-R2R-size.txt | 26 +- 14 files changed, 8280 insertions(+), 61 deletions(-) create mode 100644 tests/dotnet/UnitTests/DynamicCodeSupportTest.cs diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index cfd968d95fa..34cb30b0c19 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -167,8 +167,15 @@ false true + - false + false + false <_ComObjectDescriptorSupport Condition="'$(_ComObjectDescriptorSupport)' == ''">false diff --git a/tests/dotnet/UnitTests/DynamicCodeSupportTest.cs b/tests/dotnet/UnitTests/DynamicCodeSupportTest.cs new file mode 100644 index 00000000000..6c4634c74e4 --- /dev/null +++ b/tests/dotnet/UnitTests/DynamicCodeSupportTest.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +#nullable enable + +namespace Xamarin.Tests { + [TestFixture] + public class DynamicCodeSupportTest : TestBaseClass { + [TestCase (ApplePlatform.iOS, "iossimulator-arm64")] + [TestCase (ApplePlatform.TVOS, "tvossimulator-arm64")] + [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")] + [TestCase (ApplePlatform.MacOSX, "osx-arm64")] + public void SupportedWithCoreCLR (ApplePlatform platform, string runtimeIdentifiers) + { + // CoreCLR supports dynamic code (JIT and/or Reflection.Emit), so we must not claim otherwise: + // libraries such as Entity Framework Core use this feature switch to detect NativeAOT, and would + // otherwise refuse to work at all. See https://github.com/dotnet/macios/issues/26430. + Configuration.IgnoreIfIgnoredPlatform (platform); + Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); + + var project_path = GetProjectPath ("MySimpleApp", platform: platform); + Clean (project_path); + var properties = GetDefaultProperties (runtimeIdentifiers); + + var rv = DotNet.AssertBuild (project_path, properties); + + Assert.That (GetDynamicCodeSupport (rv.BinLogPath), Is.EqualTo ("true"), "Dynamic code must be supported when using CoreCLR."); + } + + // Note: iOS/tvOS aren't covered here, because publishing for those platforms requires a device + // runtime identifier (and thus code signing), which isn't always available. + [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")] + [TestCase (ApplePlatform.MacOSX, "osx-arm64")] + public void UnsupportedWithNativeAot (ApplePlatform platform, string runtimeIdentifiers) + { + // NativeAOT doesn't support dynamic code at all. + Configuration.IgnoreIfIgnoredPlatform (platform); + Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); + + var project_path = GetProjectPath ("MySimpleApp", platform: platform); + Clean (project_path); + var properties = GetDefaultProperties (runtimeIdentifiers); + properties ["PublishAot"] = "true"; + + var rv = DotNet.AssertPublish (project_path, properties); + + Assert.That (GetDynamicCodeSupport (rv.BinLogPath), Is.EqualTo ("false"), "Dynamic code must not be supported when using NativeAOT."); + } + + [TestCase (ApplePlatform.iOS, "iossimulator-arm64", "true")] + [TestCase (ApplePlatform.iOS, "iossimulator-arm64", "false")] + public void UserSpecifiedValue (ApplePlatform platform, string runtimeIdentifiers, string dynamicCodeSupport) + { + // When the user sets $(DynamicCodeSupport), the value must be used as-is. + Configuration.IgnoreIfIgnoredPlatform (platform); + Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); + + var project_path = GetProjectPath ("MySimpleApp", platform: platform); + Clean (project_path); + var properties = GetDefaultProperties (runtimeIdentifiers); + properties ["DynamicCodeSupport"] = dynamicCodeSupport; + + var rv = DotNet.AssertBuild (project_path, properties); + + Assert.That (GetDynamicCodeSupport (rv.BinLogPath), Is.EqualTo (dynamicCodeSupport), "The user-specified value must be used."); + } + + // Returns the effective value of the $(DynamicCodeSupport) property, which becomes the + // 'System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported' trimmer feature switch. + static string GetDynamicCodeSupport (string binLogPath) + { + // If the property isn't set at all, dotnet/sdk's default (which is 'true') applies. + if (!BinLog.TryFindPropertyValue (binLogPath, "DynamicCodeSupport", out var value) || string.IsNullOrEmpty (value)) + return "true"; + return value; + } + } +} diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt index cd891dd2dcb..9f48f9ec24e 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt @@ -3590,6 +3590,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3733,6 +3749,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3789,6 +3807,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3955,6 +3974,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3998,6 +4018,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4058,11 +4079,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4325,6 +4351,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4464,6 +4491,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4830,6 +4863,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -5015,6 +5049,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -5028,6 +5064,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6058,6 +6095,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6506,6 +6544,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8254,6 +8293,7 @@ System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracke System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracker/ActivityInfo::m_guid System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.EventSource::CurrentThreadActivityId() System.Private.CoreLib.dll:System.Guid System.Guid::Empty +System.Private.CoreLib.dll:System.Guid System.Reflection.Emit.RuntimeModuleBuilder::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.Module::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.RuntimeModule::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Runtime.InteropServices.ComWrappers::IID_IFindReferenceTargetsCallback @@ -8771,6 +8811,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9376,6 +9417,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9459,6 +9540,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9483,6 +9570,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9863,6 +9951,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9942,6 +10031,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10946,6 +11036,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11192,9 +11283,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12231,8 +12325,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12591,6 +12691,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12657,11 +12761,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12790,6 +12896,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12814,6 +12922,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12821,6 +12931,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -13036,21 +13147,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -13060,10 +13266,940 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ModuleVersionId() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13114,6 +14250,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13204,6 +14350,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13276,6 +14425,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13301,19 +14451,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13355,6 +14512,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13363,6 +14524,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13395,14 +14565,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13652,7 +14841,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13686,6 +14881,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13739,10 +14935,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13784,12 +14983,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13816,6 +15024,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13869,7 +15084,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13885,6 +15103,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13997,11 +15217,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -14009,6 +15232,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -14026,6 +15250,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -14091,7 +15316,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14164,6 +15391,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14176,6 +15404,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14186,10 +15415,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14208,6 +15439,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14223,6 +15455,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14231,6 +15464,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14251,6 +15486,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14266,14 +15502,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14487,6 +15727,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14555,6 +15796,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14600,6 +15842,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -15093,6 +16336,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15221,6 +16478,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15262,6 +16520,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15275,10 +16536,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15952,6 +17215,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -17036,6 +18300,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -17081,7 +18351,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -17089,6 +18365,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17143,6 +18420,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17155,6 +18433,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17234,6 +18515,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17264,6 +18546,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17332,6 +18615,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17488,6 +18772,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17581,6 +18868,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17734,6 +19022,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17744,6 +19034,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17751,6 +19042,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17968,6 +19264,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18253,7 +19550,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18462,6 +19782,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18475,6 +19796,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18483,6 +19806,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18585,6 +19909,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.String/SearchValuesStorage System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer @@ -19166,6 +20491,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21534,8 +22860,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3789,6 +3807,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3955,6 +3974,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3998,6 +4018,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4058,11 +4079,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4325,6 +4351,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4464,6 +4491,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4830,6 +4863,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -5015,6 +5049,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -5028,6 +5064,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6058,6 +6095,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6506,6 +6544,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8254,6 +8293,7 @@ System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracke System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracker/ActivityInfo::m_guid System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.EventSource::CurrentThreadActivityId() System.Private.CoreLib.dll:System.Guid System.Guid::Empty +System.Private.CoreLib.dll:System.Guid System.Reflection.Emit.RuntimeModuleBuilder::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.Module::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.RuntimeModule::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Runtime.InteropServices.ComWrappers::IID_IFindReferenceTargetsCallback @@ -8771,6 +8811,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9376,6 +9417,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9459,6 +9540,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9483,6 +9570,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9863,6 +9951,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9942,6 +10031,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10946,6 +11036,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11192,9 +11283,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12231,8 +12325,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12591,6 +12691,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12657,11 +12761,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12790,6 +12896,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12814,6 +12922,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12821,6 +12931,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -13036,21 +13147,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -13060,10 +13266,940 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ModuleVersionId() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13114,6 +14250,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13204,6 +14350,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13276,6 +14425,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13301,19 +14451,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13355,6 +14512,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13363,6 +14524,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13395,14 +14565,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13652,7 +14841,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13686,6 +14881,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13739,10 +14935,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13784,12 +14983,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13816,6 +15024,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13869,7 +15084,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13885,6 +15103,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13997,11 +15217,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -14009,6 +15232,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -14026,6 +15250,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -14091,7 +15316,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14164,6 +15391,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14176,6 +15404,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14186,10 +15415,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14208,6 +15439,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14223,6 +15455,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14231,6 +15464,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14251,6 +15486,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14266,14 +15502,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14487,6 +15727,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14555,6 +15796,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14600,6 +15842,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -15093,6 +16336,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15221,6 +16478,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15262,6 +16520,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15275,10 +16536,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15952,6 +17215,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -17036,6 +18300,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -17081,7 +18351,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -17089,6 +18365,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17143,6 +18420,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17155,6 +18433,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17234,6 +18515,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17264,6 +18546,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17332,6 +18615,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17488,6 +18772,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17581,6 +18868,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17734,6 +19022,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17744,6 +19034,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17751,6 +19042,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17968,6 +19264,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18253,7 +19550,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18462,6 +19782,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18475,6 +19796,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18483,6 +19806,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18585,6 +19909,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.String/SearchValuesStorage System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer @@ -19166,6 +20491,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21534,8 +22860,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3706,6 +3724,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3872,6 +3891,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3915,6 +3935,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -3975,11 +3996,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4236,6 +4262,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4375,6 +4402,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4741,6 +4774,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4926,6 +4960,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4939,6 +4975,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -5969,6 +6006,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6417,6 +6455,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8643,6 +8682,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9247,6 +9287,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9330,6 +9410,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9354,6 +9440,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9734,6 +9821,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9813,6 +9901,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10817,6 +10906,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11058,9 +11148,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12096,8 +12189,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12456,6 +12555,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12522,11 +12625,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12655,6 +12760,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12679,6 +12786,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12686,6 +12795,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12901,21 +13011,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12925,10 +13130,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -12979,6 +14113,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13069,6 +14213,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13141,6 +14288,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13166,19 +14314,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13220,6 +14375,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13228,6 +14387,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13260,14 +14428,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13515,7 +14702,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13549,6 +14742,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13602,10 +14796,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13647,12 +14844,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13679,6 +14885,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13731,7 +14944,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13747,6 +14963,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13859,11 +15077,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13871,6 +15092,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13888,6 +15110,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -13953,7 +15176,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14026,6 +15251,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14038,6 +15264,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14048,10 +15275,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14070,6 +15299,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14085,6 +15315,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14093,6 +15324,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14112,6 +15345,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14127,14 +15361,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14348,6 +15586,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14416,6 +15655,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14461,6 +15701,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -14954,6 +16195,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15082,6 +16337,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15123,6 +16379,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15136,10 +16395,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15813,6 +17074,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16897,6 +18159,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16942,7 +18210,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -16950,6 +18224,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17004,6 +18279,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17016,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17095,6 +18374,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17125,6 +18405,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17193,6 +18474,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17349,6 +18631,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17442,6 +18727,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17595,6 +18881,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17605,6 +18893,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17612,6 +18901,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17828,6 +19122,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18113,7 +19408,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18322,6 +19640,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18335,6 +19654,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18343,6 +19664,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18445,6 +19767,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19024,6 +20347,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21392,8 +22716,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3706,6 +3724,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3872,6 +3891,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3915,6 +3935,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -3975,11 +3996,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4236,6 +4262,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4375,6 +4402,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4741,6 +4774,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4926,6 +4960,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4939,6 +4975,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -5969,6 +6006,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6417,6 +6455,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8643,6 +8682,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9247,6 +9287,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9330,6 +9410,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9354,6 +9440,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9734,6 +9821,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9813,6 +9901,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10817,6 +10906,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11058,9 +11148,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12096,8 +12189,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12456,6 +12555,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12522,11 +12625,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12655,6 +12760,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12679,6 +12786,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12686,6 +12795,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12901,21 +13011,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12925,10 +13130,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -12979,6 +14113,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13069,6 +14213,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13141,6 +14288,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13166,19 +14314,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13220,6 +14375,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13228,6 +14387,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13260,14 +14428,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13515,7 +14702,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13549,6 +14742,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13602,10 +14796,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13647,12 +14844,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13679,6 +14885,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13731,7 +14944,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13747,6 +14963,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13859,11 +15077,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13871,6 +15092,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13888,6 +15110,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -13953,7 +15176,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14026,6 +15251,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14038,6 +15264,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14048,10 +15275,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14070,6 +15299,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14085,6 +15315,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14093,6 +15324,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14112,6 +15345,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14127,14 +15361,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14348,6 +15586,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14416,6 +15655,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14461,6 +15701,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -14954,6 +16195,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15082,6 +16337,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15123,6 +16379,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15136,10 +16395,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15813,6 +17074,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16897,6 +18159,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16942,7 +18210,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -16950,6 +18224,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17004,6 +18279,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17016,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17095,6 +18374,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17125,6 +18405,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17193,6 +18474,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17349,6 +18631,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17442,6 +18727,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17595,6 +18881,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17605,6 +18893,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17612,6 +18901,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17828,6 +19122,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18113,7 +19408,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18322,6 +19640,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18335,6 +19654,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18343,6 +19664,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18445,6 +19767,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19024,6 +20347,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21392,8 +22716,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3761,6 +3779,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3927,6 +3946,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3970,6 +3990,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4030,11 +4051,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4291,6 +4317,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4430,6 +4457,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4796,6 +4829,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4981,6 +5015,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4994,6 +5030,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6024,6 +6061,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6472,6 +6510,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8698,6 +8737,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9302,6 +9342,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9385,6 +9465,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9409,6 +9495,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9789,6 +9876,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9868,6 +9956,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10872,6 +10961,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11113,9 +11203,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12151,8 +12244,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12511,6 +12610,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12577,11 +12680,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12710,6 +12815,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12734,6 +12841,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12741,6 +12850,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12956,21 +13066,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12980,10 +13185,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13034,6 +14168,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13124,6 +14268,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13196,6 +14343,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13221,19 +14369,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13275,6 +14430,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13283,6 +14442,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13315,14 +14483,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13570,7 +14757,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13604,6 +14797,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13657,10 +14851,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13702,12 +14899,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13734,6 +14940,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13786,7 +14999,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13802,6 +15018,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13914,11 +15132,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13926,6 +15147,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13943,6 +15165,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -14008,7 +15231,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14081,6 +15306,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14093,6 +15319,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14103,10 +15330,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14125,6 +15354,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14140,6 +15370,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14148,6 +15379,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14167,6 +15400,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14182,14 +15416,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14403,6 +15641,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14471,6 +15710,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14516,6 +15756,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -15009,6 +16250,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15137,6 +16392,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15178,6 +16434,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15191,10 +16450,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15868,6 +17129,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16952,6 +18214,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16997,7 +18265,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -17005,6 +18279,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17059,6 +18334,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17071,6 +18347,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17150,6 +18429,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17180,6 +18460,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17248,6 +18529,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17404,6 +18686,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17497,6 +18782,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17650,6 +18936,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17660,6 +18948,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17667,6 +18956,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17883,6 +19177,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18168,7 +19463,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18377,6 +19695,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18390,6 +19709,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18398,6 +19719,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18500,6 +19822,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19079,6 +20402,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21447,8 +22771,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3761,6 +3779,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3927,6 +3946,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3970,6 +3990,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4030,11 +4051,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4291,6 +4317,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4430,6 +4457,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4796,6 +4829,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4981,6 +5015,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4994,6 +5030,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6024,6 +6061,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6472,6 +6510,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8698,6 +8737,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9302,6 +9342,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9385,6 +9465,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9409,6 +9495,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9789,6 +9876,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9868,6 +9956,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10872,6 +10961,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11113,9 +11203,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12151,8 +12244,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12511,6 +12610,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12577,11 +12680,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12710,6 +12815,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12734,6 +12841,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12741,6 +12850,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12956,21 +13066,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12980,10 +13185,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13034,6 +14168,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13124,6 +14268,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13196,6 +14343,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13221,19 +14369,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13275,6 +14430,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13283,6 +14442,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13315,14 +14483,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13570,7 +14757,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13604,6 +14797,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13657,10 +14851,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13702,12 +14899,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13734,6 +14940,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13786,7 +14999,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13802,6 +15018,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13914,11 +15132,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13926,6 +15147,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13943,6 +15165,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -14008,7 +15231,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14081,6 +15306,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14093,6 +15319,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14103,10 +15330,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14125,6 +15354,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14140,6 +15370,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14148,6 +15379,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14167,6 +15400,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14182,14 +15416,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14403,6 +15641,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14471,6 +15710,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14516,6 +15756,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -15009,6 +16250,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15137,6 +16392,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15178,6 +16434,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15191,10 +16450,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15868,6 +17129,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16952,6 +18214,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16997,7 +18265,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -17005,6 +18279,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17059,6 +18334,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17071,6 +18347,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17150,6 +18429,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17180,6 +18460,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17248,6 +18529,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17404,6 +18686,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17497,6 +18782,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17650,6 +18936,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17660,6 +18948,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17667,6 +18956,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17883,6 +19177,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18168,7 +19463,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18377,6 +19695,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18390,6 +19709,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18398,6 +19719,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18500,6 +19822,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19079,6 +20402,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21447,8 +22771,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType:: Date: Fri, 4 Sep 2026 13:19:29 +0200 Subject: [PATCH 02/10] [dotnet] Report a clear error for PublishReadyToRunComposite=false. Fixes #26456. (#26475) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Setting `PublishReadyToRunComposite=false` made the build fail with one `MSB3030: Could not copy the file ".../R2R/.dylib" because it was not found.` error per assembly, which gives no clue about what's actually wrong. Non-composite ReadyToRun compilation just isn't supported with the Mach-O container format we use for iOS, tvOS and Mac Catalyst: * crossgen2 emits one Mach-O object file per assembly, but no component assemblies for the runtime to load, and the SDK replaces the IL assemblies in the publish output with the (never created) per-assembly dylibs. * The runtime only knows how to locate platform-native ReadyToRun code by looking up the owner composite image, see https://github.com/dotnet/runtime/blob/main/docs/design/coreclr/botr/readytorun-platform-native-envelope.md So report a single, actionable error instead. Fixes https://github.com/dotnet/macios/issues/26456 🤖 Pull request created by Copilot --- docs/building-apps/build-properties.md | 8 ++++++++ dotnet/targets/Microsoft.Sdk.R2R.targets | 12 ++++++++++++ tests/dotnet/UnitTests/ProjectTest.cs | 19 +++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/docs/building-apps/build-properties.md b/docs/building-apps/build-properties.md index 81788ba60cf..e4c32038f6c 100644 --- a/docs/building-apps/build-properties.md +++ b/docs/building-apps/build-properties.md @@ -1412,6 +1412,14 @@ The product definition template (`.plist`) to be used when creating the product Only applicable to macOS and Mac Catalyst apps. +## PublishReadyToRunComposite + +Specifies whether ReadyToRun (R2R) compilation produces a single composite image containing all the assemblies, or one image per assembly. + +Only composite ReadyToRun compilation is supported for iOS, tvOS and Mac Catalyst apps, because the ReadyToRun code is embedded in the app bundle as native Mach-O code, and the runtime only knows how to locate such code for a composite image. Setting this property to `false` will produce a build error; set [PublishReadyToRun](https://learn.microsoft.com/dotnet/core/deploying/ready-to-run) to `false` to turn off ReadyToRun compilation completely instead. + +Default: `true` (when `PublishReadyToRun` is `true`). + ## RecommendedXcodeVersion The version of Xcode recommended for use with this version of .NET for iOS, tvOS, macOS and Mac Catalyst. diff --git a/dotnet/targets/Microsoft.Sdk.R2R.targets b/dotnet/targets/Microsoft.Sdk.R2R.targets index 255e2ed3480..191be8cfef4 100644 --- a/dotnet/targets/Microsoft.Sdk.R2R.targets +++ b/dotnet/targets/Microsoft.Sdk.R2R.targets @@ -3,6 +3,18 @@ + + + + + e.Message), Has.Some.Contains ("does not support publishing to a single file"), "Error message"); } + [Test] + [TestCase (ApplePlatform.iOS, "iossimulator-arm64")] + [TestCase (ApplePlatform.TVOS, "tvossimulator-arm64")] + [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")] + public void PublishReadyToRunComposite_False_IsNotSupported (ApplePlatform platform, string runtimeIdentifiers) + { + var project = "MySimpleApp"; + Configuration.IgnoreIfIgnoredPlatform (platform); + + var project_path = GetProjectPath (project, platform: platform); + Clean (project_path); + var properties = GetDefaultProperties (runtimeIdentifiers); + properties ["PublishReadyToRunComposite"] = "false"; + var rv = DotNet.AssertBuildFailure (project_path, properties); + var errors = BinLog.GetBuildLogErrors (rv.BinLogPath).ToArray (); + Assert.That (errors.Length, Is.EqualTo (1), "Error count"); + Assert.That (errors [0].Message, Does.StartWith ("Setting 'PublishReadyToRunComposite' to 'false' isn't supported"), "Error message"); + } + [Test] [TestCase (ApplePlatform.iOS, "ios-arm64;iossimulator-x64")] [TestCase (ApplePlatform.iOS, "ios-arm64;iossimulator-arm64")] From 8dd9ff343c17bef04808785c9bfcc1fdc0049ddb Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 13:19:55 +0200 Subject: [PATCH 03/10] [xtro-sharpie] Fix ProtocolAttribute native name lookup (#26498) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the xtro-sharpie nullability check for members of protocols whose native name is supplied through `ProtocolAttribute.Name`. `Helpers.GetName(TypeDefinition)` previously only inspected constructor arguments and fell back to the managed type name. For many types, that prevented matching native declarations and caused a number of diagnostics to go unreported. 🤖 Pull request created by Copilot --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Rolf Bjarne Kvinge --- tests/xtro-sharpie/Makefile | 3 + .../MacCatalyst-AuthenticationServices.ignore | 4 + .../MacCatalyst-BackgroundAssets.ignore | 1 + .../MacCatalyst-ClassKit.ignore | 1 + .../MacCatalyst-CoreImage.ignore | 4 + .../MacCatalyst-CoreNFC.ignore | 31 +++ .../MacCatalyst-Foundation.ignore | 15 +- .../MacCatalyst-GameController.ignore | 1 + .../MacCatalyst-GameplayKit.ignore | 1 + .../MacCatalyst-Messages.ignore | 1 + .../MacCatalyst-Metal.ignore | 67 ++++++ .../MacCatalyst-MetalFX.ignore | 4 + ...MacCatalyst-MetalPerformanceShaders.ignore | 1 + .../MacCatalyst-ModelIO.ignore | 9 + .../MacCatalyst-PhotosUI.ignore | 1 + .../MacCatalyst-QuickLook.ignore | 4 + .../MacCatalyst-UIKit.ignore | 118 ++++++---- .../common-BackgroundAssets.ignore | 2 +- .../common-Foundation.ignore | 20 +- .../common-UIKit.ignore | 4 +- .../iOS-AuthenticationServices.ignore | 4 + .../iOS-BackgroundAssets.ignore | 1 + .../iOS-BrowserEngineKit.ignore | 3 + .../api-annotations-dotnet/iOS-CarPlay.ignore | 1 + .../iOS-ClassKit.ignore | 1 + .../iOS-CoreImage.ignore | 4 + .../api-annotations-dotnet/iOS-CoreNFC.ignore | 33 +++ .../iOS-FileProvider.ignore | 9 + .../iOS-Foundation.ignore | 15 +- .../iOS-GameController.ignore | 1 + .../iOS-GameplayKit.ignore | 1 + .../iOS-Messages.ignore | 1 + .../api-annotations-dotnet/iOS-Metal.ignore | 67 ++++++ .../api-annotations-dotnet/iOS-MetalFX.ignore | 4 + .../iOS-MetalPerformanceShaders.ignore | 1 + .../api-annotations-dotnet/iOS-ModelIO.ignore | 9 + .../iOS-PhotosUI.ignore | 1 + .../iOS-QuickLook.ignore | 4 + .../api-annotations-dotnet/iOS-UIKit.ignore | 119 ++++++---- .../macOS-AppKit.ignore | 214 ++++++++++-------- .../macOS-AuthenticationServices.ignore | 4 + .../macOS-BackgroundAssets.ignore | 1 + .../macOS-ClassKit.ignore | 1 + .../macOS-CoreImage.ignore | 4 + .../api-annotations-dotnet/macOS-FSKit.ignore | 2 + .../macOS-FileProvider.ignore | 9 + .../macOS-Foundation.ignore | 17 +- .../macOS-GameController.ignore | 1 + .../macOS-GameplayKit.ignore | 1 + .../macOS-MailKit.ignore | 3 + .../api-annotations-dotnet/macOS-Metal.ignore | 67 ++++++ .../macOS-MetalFX.ignore | 4 + .../macOS-MetalPerformanceShaders.ignore | 1 + .../macOS-ModelIO.ignore | 9 + .../macOS-PhotosUI.ignore | 3 + .../macOS-QuickLookUI.ignore | 5 + .../macOS-SafariServices.ignore | 1 + .../api-annotations-dotnet/tvOS-AVKit.ignore | 2 + .../tvOS-BackgroundAssets.ignore | 1 + .../tvOS-BrowserEngineKit.ignore | 3 + .../tvOS-CoreImage.ignore | 4 + .../tvOS-Foundation.ignore | 13 ++ .../tvOS-GameController.ignore | 1 + .../tvOS-GameplayKit.ignore | 1 + .../api-annotations-dotnet/tvOS-Metal.ignore | 66 ++++++ .../tvOS-MetalFX.ignore | 4 + .../tvOS-MetalPerformanceShaders.ignore | 1 + .../tvOS-ModelIO.ignore | 9 + .../api-annotations-dotnet/tvOS-UIKit.ignore | 99 +++++--- tests/xtro-sharpie/u2todo/u2todo.cs | 5 +- tests/xtro-sharpie/xtro-sharpie/Helpers.cs | 7 + 71 files changed, 898 insertions(+), 236 deletions(-) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-BackgroundAssets.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreImage.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameplayKit.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-QuickLook.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundAssets.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-GameplayKit.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-PhotosUI.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-QuickLook.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-BackgroundAssets.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-GameplayKit.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-QuickLookUI.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundAssets.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameplayKit.ignore create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore diff --git a/tests/xtro-sharpie/Makefile b/tests/xtro-sharpie/Makefile index 349672999bc..29b482f1bac 100644 --- a/tests/xtro-sharpie/Makefile +++ b/tests/xtro-sharpie/Makefile @@ -227,6 +227,9 @@ $(U2TODO): $(wildcard u2todo/*.cs u2todo/*.csproj xtro-sharpie/Filter.cs) unclassified2todo: $(U2TODO) cd $(DOTNET_ANNOTATIONS_DIR) && $(DOTNET) exec $(abspath $(U2TODO)) +unclassified2ignore: $(U2TODO) + cd $(DOTNET_ANNOTATIONS_DIR) && $(DOTNET) exec $(abspath $(U2TODO)) --ignore + run-tests run-unit-tests: $(Q) $(MAKE) -C UnitTests $@ diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AuthenticationServices.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AuthenticationServices.ignore index 50135011a94..5d3723280bb 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AuthenticationServices.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AuthenticationServices.ignore @@ -18,3 +18,7 @@ !missing-null-allowed! 'System.Void AuthenticationServices.ASCredentialIdentityStore::SaveCredentialIdentityEntries(AuthenticationServices.IASCredentialIdentity[],System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void AuthenticationServices.ASSettingsHelper::OpenCredentialProviderAppSettings(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void AuthenticationServices.ASSettingsHelper::OpenVerificationCodeAppSettings(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest::get_ClientData()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-BackgroundAssets.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-BackgroundAssets.ignore new file mode 100644 index 00000000000..a8e301d328a --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-BackgroundAssets.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'System.Void BackgroundAssets.IBADownloaderExtension::DidReceiveChallenge(BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ClassKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ClassKit.ignore index 569d612c56b..832115a071e 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ClassKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ClassKit.ignore @@ -6,3 +6,4 @@ !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::FindContextsMatching(Foundation.NSPredicate,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::FindContextsMatching(System.String[],System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::Save(System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 +!missing-null-allowed! 'System.Void ClassKit.ICLSContextProvider::UpdateDescendants(ClassKit.CLSContext,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreImage.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreImage.ignore new file mode 100644 index 00000000000..e95652a07e0 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreImage.ignore @@ -0,0 +1,4 @@ +!extra-null-allowed! 'System.Void CoreImage.ICIBlurredRectangleGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIColorAbsoluteDifferenceProtocol::set_Image2(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIDistanceGradientFromRedMaskProtocol::set_InputImage(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreNFC.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreNFC.ignore index 68eb7857889..6264f73005b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreNFC.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-CoreNFC.ignore @@ -1,3 +1,34 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void CoreNFC.NFCNdefReaderSession::ConnectToTag(CoreNFC.INFCNdefTag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void CoreNFC.NFCTagReaderSession::ConnectTo(CoreNFC.INFCTag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::StayQuiet(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::RequestResponse(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::RequestService(Foundation.NSData[],System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::RequestSystemCode(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::Send(Foundation.NSData,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::Challenge(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::CustomCommand(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,Foundation.NSData,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedLockBlock(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedReadMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedReadSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedWriteMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,Foundation.NSData[],System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedWriteSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::GetMultipleBlockSecurityStatus(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::LockAfi(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::LockBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::LockDsfId(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ReadMultipleBlocks(CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ReadMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ReadSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ResetToReady(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::Select(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::SendCustomCommand(CoreNFC.NFCIso15693CustomCommandConfiguration,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteAfi(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteDsfi(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,Foundation.NSData[],System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCMiFareTag::SendMiFareCommand(Foundation.NSData,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::ReadNdef(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::ReadNdef(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::WriteLock(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::WriteNdef(CoreNFC.NFCNdefMessage,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Foundation.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Foundation.ignore index a61b1db814c..b9e1f5b5f32 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Foundation.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Foundation.ignore @@ -484,7 +484,7 @@ !missing-null-allowed! 'System.Void Foundation.NSBundleResourceRequest::BeginAccessingResources(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileManager::GetFileProviderServices(Foundation.NSUrl,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileManager::GetFileProviderServices(Foundation.NSUrl,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #1 -!missing-null-allowed! 'System.Void Foundation.NSFilePresenter::AccommodatePresentedItemEviction(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSFilePresenter::AccommodatePresentedItemEviction(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileProviderService::GetFileProviderConnection(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileProviderService::GetFileProviderConnection(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 @@ -493,3 +493,16 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! NSInputStream::_setCFClientFlags:callback:context: not found +!missing-null-allowed! 'Foundation.NSCachedUrlResponse Foundation.INSUrlConnectionDataDelegate::WillCacheResponse(Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSInputStream Foundation.INSUrlConnectionDataDelegate::NeedNewBodyStream(Foundation.NSUrlConnection,Foundation.NSUrlRequest)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDataDelegate::WillCacheResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidBecomeInvalid(Foundation.NSUrlSession,Foundation.NSError)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameController.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameController.ignore index b91bd0531a5..6f771ee3bb9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameController.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameController.ignore @@ -1,2 +1,3 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void GameController.GCVirtualController::Connect(System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 +!deprecated-attribute-missing! GCDevice::physicalInputProfile missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameplayKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameplayKit.ignore new file mode 100644 index 00000000000..79c664559ac --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-GameplayKit.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'GameplayKit.IGKGameModelUpdate GameplayKit.IGKStrategist::GetBestMoveForActivePlayer()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Messages.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Messages.ignore index b1091684b28..29f39e34cd9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Messages.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Messages.ignore @@ -13,3 +13,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! MSSticker::initWithFileURL:identifier:localizedDescription: not found +!missing-null-allowed! 'UIKit.UIColor Messages.IMSMessagesAppTranscriptPresentation::get_MessageTintColor()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.ignore index 59a664d8e75..2e673028db7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.ignore @@ -10,3 +10,70 @@ !unknown-selector! MTLLinkedFunctions::setMotionTransformBuffer: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformBufferOffset: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformCount: not found +!deprecated-attribute-missing! MTLBlitCommandEncoder::getTextureAccessCounters:region:mipLevel:slice:resetCounters:countersBuffer:countersBufferOffset: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBlitCommandEncoder::resetTextureAccessCounters:region:mipLevel:slice: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::areBarycentricCoordsSupported missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::newLibraryWithFile:error: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::supportsFeatureSet: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFunction::newArgumentEncoderWithBufferIndex:reflection: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeap: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeaps:count: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResource:usage: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResources:count:usage: missing a [Deprecated] attribute +!missing-null-allowed! 'Foundation.NSError Metal.IMTLCommandBuffer::get_Error()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLAccelerationStructureCommandEncoder Metal.IMTLCommandBuffer::CreateAccelerationStructureCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::CreateBlitCommandEncoder(Metal.MTLBlitPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::get_BlitCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBuffer Metal.IMTLDevice::CreateBufferNoCopy(System.IntPtr,System.UIntPtr,Metal.MTLResourceOptions,Metal.MTLDeallocator)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::CreateComputeCommandEncoder(Metal.MTLComputePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::get_ComputeCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLComputePipelineState::CreateComputePipelineState(Metal.IMTLFunction[],Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.MTLComputePipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFence Metal.IMTLDevice::CreateFence()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunction Metal.IMTLLibrary::CreateFunction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunctionHandle Metal.IMTLComputePipelineState::CreateFunctionHandle(Metal.IMTLFunction)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLIntersectionFunctionTable Metal.IMTLComputePipelineState::CreateIntersectionFunctionTable(Metal.MTLIntersectionFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateDefaultLibrary()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(CoreFoundation.DispatchData,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderCommandEncoder Metal.IMTLCommandBuffer::CreateRenderCommandEncoder(Metal.MTLRenderPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLResourceStateCommandEncoder Metal.IMTLCommandBuffer::CreateResourceStateCommandEncoder(Metal.MTLResourceStatePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLVisibleFunctionTable Metal.IMTLComputePipelineState::CreateVisibleFunctionTable(Metal.MTLVisibleFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.MTLVertexAttribute[] Metal.IMTLFunction::get_VertexAttributes()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLDepthStencilState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLRenderPipelineState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLSamplerState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Metal.IMTL4MachineLearningCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTL4RenderCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable,Metal.MTLRenderStages)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLAccelerationStructureCommandEncoder::RefitAccelerationStructure(Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'System.Void Metal.IMTLCommandBuffer::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandEncoder::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandQueue::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,System.Action`2)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetDepthStencilState(Metal.IMTLDepthStencilState)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetObjectBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLResource::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore new file mode 100644 index 00000000000..2e58e541304 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore @@ -0,0 +1,4 @@ +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalPerformanceShaders.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalPerformanceShaders.ignore index ad0d6c4f42f..48e26f60135 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalPerformanceShaders.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalPerformanceShaders.ignore @@ -3,3 +3,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! MPSCNNKernel::sourceRegionForDestinationSize: not found +!missing-null-allowed! 'System.String MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource::get_Label()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ModelIO.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ModelIO.ignore index 5032dc29901..21e2a115ce8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ModelIO.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-ModelIO.ignore @@ -5,3 +5,12 @@ !unknown-selector! MDLAsset::componentConformingToProtocol: not found !unknown-selector! MDLAsset::components not found !unknown-selector! MDLAsset::setComponent:forProtocol: not found +!extra-null-allowed! 'ModelIO.IMDLMeshBufferZone ModelIO.IMDLMeshBuffer::get_Zone()' has a extraneous [NullAllowed] on return type +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::get_Matrix(): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::GetLocalTransform(System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! Foundation.NSData ModelIO.IMDLLightProbeIrradianceDataSource::GetSphericalHarmonicsCoefficients(System.Numerics.Vector3): simd type: vector_float3 +!wrong-simd-missing-marshaldirective! ModelIO.MDLAxisAlignedBoundingBox ModelIO.IMDLLightProbeIrradianceDataSource::get_BoundingBox(): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLLightProbeIrradianceDataSource::set_BoundingBox(ModelIO.MDLAxisAlignedBoundingBox): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::set_Matrix(CoreGraphics.NMatrix4): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4,System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4): simd type: matrix_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-PhotosUI.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-PhotosUI.ignore index a011f949a90..9c76a435028 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-PhotosUI.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-PhotosUI.ignore @@ -1 +1,2 @@ ## This type is deprecated in iOS 13 and does not support MacCatalyst +!missing-null-allowed! 'System.Void PhotosUI.IPHContentEditingController::FinishContentEditing(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-QuickLook.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-QuickLook.ignore new file mode 100644 index 00000000000..0f3a3463024 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-QuickLook.ignore @@ -0,0 +1,4 @@ +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::PreparePreviewOfFile(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::PreparePreviewOfSearchableItem(System.String,System.String,System.Action`1)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::ProvidePreview(QuickLook.QLFilePreviewRequest,System.Action`2)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::ProvidePreview(QuickLook.QLFilePreviewRequest,System.Action`2)' is missing a '?' on parameter 'handler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore index 5cc7331e379..4c1148c8df7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore @@ -117,14 +117,14 @@ !missing-selector! UITabBarItemAppearance::copy not bound # Initial result from new rule extra-null-allowed -!extra-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type +!extra-null-allowed! 'Foundation.NSIndexPath UIKit.IUICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Name(System.String)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Selector(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIBezierPath::set_CGPath(CoreGraphics.CGPath)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UICollectionReusableView::ApplyLayoutAttributes(UIKit.UICollectionViewLayoutAttributes)' has a extraneous [NullAllowed] on parameter #0 -!extra-null-allowed! 'System.Void UIKit.UIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1 +!extra-null-allowed! 'System.Void UIKit.IUIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::AddBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::RemoveBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIMarkupTextPrintFormatter::.ctor(System.String)' has a extraneous [NullAllowed] on parameter #0 @@ -142,7 +142,7 @@ !extra-null-allowed! 'UIKit.UIView UIKit.UIScreen::SnapshotView(System.Boolean)' has a extraneous [NullAllowed] on return type # Initial result from new rule missing-null-allowed -!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSAttributedString UIKit.IUIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSProgress UIKit.UIDocument::get_Progress()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #3 @@ -150,9 +150,9 @@ !missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::WriteAdditionalContent(Foundation.NSObject,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean UIKit.UIPrintInteractionController::PrintToPrinter(UIKit.UIPrinter,UIKit.UIPrintInteractionCompletionHandler)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Boolean UIKit.UIScrollView::TouchesShouldBegin(Foundation.NSSet,UIKit.UIEvent,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Double UIKit.UIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean UIKit.IUISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Double UIKit.IUIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityAttributedUserInputLabels(Foundation.NSAttributedString[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityUserInputLabels(System.String[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1 @@ -189,8 +189,8 @@ !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesChanged(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesEnded(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIScene::set_Title(System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UISearchBar::_SetScopeBarButtonTitle(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISearchTextField::set_TokenBackgroundColor(UIKit.UIColor)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::.ctor(Foundation.NSArray)' is missing an [NullAllowed] on parameter #0 @@ -200,24 +200,24 @@ !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetTitle(System.String,System.IntPtr)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITabBarController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITableViewController::set_TableView(UIKit.UITableView)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITableViewDelegate::DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUITableViewDelegate::DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UITableViewHeaderFooterView::.ctor(Foundation.NSString)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITextView::set_AttributedText(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITextView::set_WeakLinkTextAttributes(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.UIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.IUIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIAlertAction UIKit.UIAlertAction::Create(System.String,UIKit.UIAlertActionStyle,System.Action`1)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'UIKit.UIBezierPath UIKit.UICollisionBehavior::GetBoundary(Foundation.NSObject)' is missing an [NullAllowed] on return type @@ -243,7 +243,7 @@ !missing-null-allowed! 'UIKit.UIGestureRecognizer UIKit.UINavigationController::get_InteractivePopGestureRecognizer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIGestureRecognizer[] UIKit.UITouch::get_GestureRecognizers()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIActivity::get_Image()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIImage UIKit.UIActivityItemSource::GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIImage UIKit.IUIActivityItemSource::GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackButtonBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type @@ -282,7 +282,7 @@ !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPasteboard UIKit.UIPasteboard::FromName(System.String,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPinchGestureRecognizer UIKit.UIScrollView::get_PinchGestureRecognizer()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIPresentationController UIKit.IUIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrinter UIKit.UIPrinterPickerController::get_SelectedPrinter()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintFormatter[] UIKit.UIPrintPageRenderer::PrintFormattersForPage(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintInfo UIKit.UIPrintInfo::FromDictionary(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 @@ -293,9 +293,9 @@ !missing-null-allowed! 'UIKit.UIScreenMode UIKit.UIScreen::get_PreferredMode()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UITextField[] UIKit.UIAlertController::get_TextFields()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UITextInputMode UIKit.UIResponder::get_TextInputMode()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UITextPosition UIKit.UITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UITextRange UIKit.UITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIDocumentInteractionControllerDelegate::ViewForPreview(UIKit.UIDocumentInteractionController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIDocumentInteractionControllerDelegate::ViewForPreview(UIKit.UIDocumentInteractionController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIDynamicAnimator::get_ReferenceView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIGestureRecognizer::get_View()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIPickerView::ViewFor(System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type @@ -303,28 +303,28 @@ !missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_PresentedView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputAccessoryView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputView()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UITouch::get_View()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIActivity::get_ViewController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_TopViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_VisibleViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISearchController::get_SearchResultsController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type @@ -386,19 +386,19 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void UIKit.NSTextContentManager::SynchronizeTextLayoutManagers(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIApplication::SetAlternateIconName(System.String,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::ImportDocument(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::ImportDocument(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RenameDocument(Foundation.NSUrl,System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RenameDocument(Foundation.NSUrl,System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RevealDocument(Foundation.NSUrl,System.Boolean,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RevealDocument(Foundation.NSUrl,System.Boolean,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 -!missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewControllerDelegate::DidRequestDocumentCreation(UIKit.UIDocumentBrowserViewController,System.Action`2)' is missing a '?' on parameter 'importHandler' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIDocumentBrowserViewControllerDelegate::DidRequestDocumentCreation(UIKit.UIDocumentBrowserViewController,System.Action`2)' is missing a '?' on parameter 'importHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImage::PrepareForDisplay(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImage::PrepareThumbnail(CoreGraphics.CGSize,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImageReader::GetImage(Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImageReader::GetImage(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIIndirectScribbleInteractionDelegate::FocusElementIfNeeded(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject,CoreGraphics.CGPoint,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIIndirectScribbleInteractionDelegate::FocusElementIfNeeded(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject,CoreGraphics.CGPoint,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPasteboard::DetectPatterns(Foundation.NSSet`1,Foundation.NSIndexSet,System.Action`2[],Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPasteboard::DetectPatterns(Foundation.NSSet`1,Foundation.NSIndexSet,System.Action`2[],Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'System.Void UIKit.UIPasteboard::DetectPatterns(Foundation.NSSet`1,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 @@ -415,3 +415,35 @@ !unknown-selector! +UIFocusDebugger::checkFocusGroupTreeForEnvironment: not found !unknown-selector! UIDocumentBrowserAction::imageOnlyForContextMenu not found !unknown-selector! UIDocumentBrowserAction::setImageOnlyForContextMenu: not found +!extra-null-allowed! 'CoreGraphics.CGPoint UIKit.IUIDragDropSession::LocationInView(UIKit.UIView)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'CoreGraphics.CGRect UIKit.IUITextInput::GetCaretRectForPosition(UIKit.UITextPosition)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void UIKit.IUIResponderStandardEditActions::ShowWritingTools(Foundation.NSObject)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'Foundation.NSDictionary UIKit.IUITextInput::GetTextStyling(UIKit.UITextPosition,UIKit.UITextStorageDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSIndexPath UIKit.IUIDataSourceModelAssociation::GetIndexPath(System.String,UIKit.UIView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransition(System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransitionInView(UIKit.UIView,System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransitionInView(UIKit.UIView,System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.String UIKit.IUIAccessibilityReadingContent::GetAccessibilityContent(System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIAccessibilityReadingContent::GetAccessibilityPageContent()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIDataSourceModelAssociation::GetModelIdentifier(Foundation.NSIndexPath,UIKit.UIView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIGuidedAccessRestrictionDelegate::GetDetailTextForGuidedAccessRestriction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIGuidedAccessRestrictionDelegate::GetTextForGuidedAccessRestriction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUITextInput::TextInRange(UIKit.UITextRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String[] UIKit.IUIGuidedAccessRestrictionDelegate::get_GetGuidedAccessRestrictionIdentifiers()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void UIKit.INSTextElementProvider::Synchronize(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIMenuLeaf::set_SelectedImage(UIKit.UIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInput::SetMarkedText(System.String,Foundation.NSRange)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'UIKit.IUIPopoverPresentationControllerSourceItem UIKit.IUIMenuLeaf::get_PresentationSourceItem()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetClosestPositionToPoint(CoreGraphics.CGPoint,UIKit.UITextRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetClosestPositionToPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextPosition,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextPosition,UIKit.UITextLayoutDirection,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextRange,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPositionWithinRange(UIKit.UITextRange,UIKit.UITextLayoutDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::get_MarkedTextRange()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetCharacterRangeAtPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetTextRange(UIKit.UITextPosition,UIKit.UITextPosition)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIInteraction::get_View()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIViewControllerTransitionCoordinatorContext::GetTransitionViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIViewControllerTransitionCoordinatorContext::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/common-BackgroundAssets.ignore b/tests/xtro-sharpie/api-annotations-dotnet/common-BackgroundAssets.ignore index 438884f91e9..3a4c50580d0 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/common-BackgroundAssets.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/common-BackgroundAssets.ignore @@ -2,4 +2,4 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void BackgroundAssets.BADownloadManager::FetchCurrentDownloads(System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'System.Void BackgroundAssets.BADownloadManager::PerformWithExclusiveControlBeforeDate(Foundation.NSDate,System.Action`2)' is missing a '?' on parameter 'performHandler' block parameter #1 -!missing-null-allowed! 'System.Void BackgroundAssets.BADownloadManagerDelegate::DidReceiveChallenge(BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void BackgroundAssets.IBADownloadManagerDelegate::DidReceiveChallenge(BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/common-Foundation.ignore b/tests/xtro-sharpie/api-annotations-dotnet/common-Foundation.ignore index f2220589032..f031afeaff1 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/common-Foundation.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/common-Foundation.ignore @@ -1000,9 +1000,9 @@ !missing-null-allowed! 'Foundation.NSObject Foundation.NSFileManager::get_UbiquityIdentityToken()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject Foundation.NSJsonSerialization::Deserialize(Foundation.NSData,Foundation.NSJsonReadingOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject Foundation.NSJsonSerialization::Deserialize(Foundation.NSInputStream,Foundation.NSJsonReadingOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject Foundation.NSKeyedArchiverDelegate::WillEncode(Foundation.NSKeyedArchiver,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject Foundation.NSKeyedUnarchiverDelegate::DecodedObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'Foundation.NSObject Foundation.NSKeyedUnarchiverDelegate::DecodedObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject Foundation.INSKeyedArchiverDelegate::WillEncode(Foundation.NSKeyedArchiver,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject Foundation.INSKeyedUnarchiverDelegate::DecodedObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Foundation.NSObject Foundation.INSKeyedUnarchiverDelegate::DecodedObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject Foundation.NSMetadataItem::ValueForAttribute(System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject Foundation.NSMetadataQuery::ValueOfAttribute(System.String,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject Foundation.NSMetadataQueryAttributeValueTuple::get_Value()' is missing an [NullAllowed] on return type @@ -1064,7 +1064,7 @@ !missing-null-allowed! 'Foundation.NSUrlSessionUploadTask Foundation.NSUrlSession::CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSData,Foundation.NSUrlSessionResponse)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'Foundation.NSValue Foundation.NSValue::ValueFromNonretainedObject(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'Foundation.NSXpcConnection Foundation.NSXpcConnection::get_CurrentConnection()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'ObjCRuntime.Class Foundation.NSKeyedUnarchiverDelegate::CannotDecodeClass(Foundation.NSKeyedUnarchiver,System.String,System.String[])' is missing an [NullAllowed] on return type +!missing-null-allowed! 'ObjCRuntime.Class Foundation.INSKeyedUnarchiverDelegate::CannotDecodeClass(Foundation.NSKeyedUnarchiver,System.String,System.String[])' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.Boolean Foundation.NSFileManager::CreateFile(System.String,Foundation.NSData,Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Boolean Foundation.NSPredicate::EvaluateWithObject(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean Foundation.NSPredicate::EvaluateWithObject(Foundation.NSObject,Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 @@ -1174,9 +1174,9 @@ !missing-null-allowed! 'System.Void Foundation.NSItemProvider::.ctor(Foundation.NSObject,System.String)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void Foundation.NSItemProvider::SetPreviewImageHandler(Foundation.NSItemProviderLoadHandler)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSKeyedArchiver::SetClassName(System.String,ObjCRuntime.Class)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void Foundation.NSKeyedArchiverDelegate::EncodedObject(Foundation.NSKeyedArchiver,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void Foundation.NSKeyedArchiverDelegate::ReplacingObject(Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void Foundation.NSKeyedArchiverDelegate::ReplacingObject(Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Void Foundation.INSKeyedArchiverDelegate::EncodedObject(Foundation.NSKeyedArchiver,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSKeyedArchiverDelegate::ReplacingObject(Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSKeyedArchiverDelegate::ReplacingObject(Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Void Foundation.NSKeyedUnarchiver::SetClass(ObjCRuntime.Class,System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSLengthFormatter::set_NumberFormatter(Foundation.NSNumberFormatter)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSListFormatter::set_Locale(Foundation.NSLocale)' is missing an [NullAllowed] on parameter #0 @@ -1318,9 +1318,9 @@ !missing-null-allowed! 'Foundation.NSUrlSessionUploadTask Foundation.NSUrlSession::CreateUploadTask(Foundation.NSData,System.Action`3)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'Foundation.NSUrlSessionUploadTask Foundation.NSUrlSession::CreateUploadTask(Foundation.NSData,System.Action`3)' is missing a '?' on parameter 'completionHandler' block parameter #2 !missing-null-allowed! 'System.Void Foundation.NSFileCoordinator::CoordinateAccess(Foundation.NSFileAccessIntent[],Foundation.NSOperationQueue,System.Action`1)' is missing a '?' on parameter 'accessor' block parameter #0 -!missing-null-allowed! 'System.Void Foundation.NSFilePresenter::AccommodatePresentedItemDeletion(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 -!missing-null-allowed! 'System.Void Foundation.NSFilePresenter::AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 -!missing-null-allowed! 'System.Void Foundation.NSFilePresenter::SavePresentedItemChanges(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSFilePresenter::AccommodatePresentedItemDeletion(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSFilePresenter::AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSFilePresenter::SavePresentedItemChanges(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSHttpCookieStorage::GetCookiesForTask(Foundation.NSUrlSessionTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSUrlCache::GetCachedResponse(Foundation.NSUrlSessionDataTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSUrlCredentialStorage::GetCredentials(Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/common-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/common-UIKit.ignore index 6fcfcb4218e..5898c21f4f9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/common-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/common-UIKit.ignore @@ -186,8 +186,8 @@ !missing-selector! NSDiffableDataSourceTransaction::difference not bound # empirical evidence shows the UIView parameter can be null for UITableViewDelegate::WillDisplay[Header|Footer]View: https://github.com/dotnet/macios/issues/9814 -!extra-null-allowed! 'System.Void UIKit.UITableViewDelegate::WillDisplayFooterView(UIKit.UITableView,UIKit.UIView,System.IntPtr)' has a extraneous [NullAllowed] on parameter #1 -!extra-null-allowed! 'System.Void UIKit.UITableViewDelegate::WillDisplayHeaderView(UIKit.UITableView,UIKit.UIView,System.IntPtr)' has a extraneous [NullAllowed] on parameter #1 +!extra-null-allowed! 'System.Void UIKit.IUITableViewDelegate::WillDisplayFooterView(UIKit.UITableView,UIKit.UIView,System.IntPtr)' has a extraneous [NullAllowed] on parameter #1 +!extra-null-allowed! 'System.Void UIKit.IUITableViewDelegate::WillDisplayHeaderView(UIKit.UITableView,UIKit.UIView,System.IntPtr)' has a extraneous [NullAllowed] on parameter #1 # updated sharpie results !missing-protocol-conformance! UIWindowScene should conform to UITraitEnvironment (defined in '' category) diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.ignore index 50135011a94..5d3723280bb 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.ignore @@ -18,3 +18,7 @@ !missing-null-allowed! 'System.Void AuthenticationServices.ASCredentialIdentityStore::SaveCredentialIdentityEntries(AuthenticationServices.IASCredentialIdentity[],System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void AuthenticationServices.ASSettingsHelper::OpenCredentialProviderAppSettings(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void AuthenticationServices.ASSettingsHelper::OpenVerificationCodeAppSettings(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest::get_ClientData()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundAssets.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundAssets.ignore new file mode 100644 index 00000000000..a8e301d328a --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundAssets.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'System.Void BackgroundAssets.IBADownloaderExtension::DidReceiveChallenge(BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.ignore new file mode 100644 index 00000000000..698d08334f0 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.ignore @@ -0,0 +1,3 @@ +!missing-null-allowed! 'System.Void BrowserEngineKit.IBETextInput::SelectTextForEditMenu(CoreGraphics.CGPoint,System.Action`3)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'UIKit.UIView BrowserEngineKit.IBETextInput::get_SelectionContainerViewAboveText()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView BrowserEngineKit.IBETextInput::get_SelectionContainerViewBelowText()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.ignore index 57b1ac555e2..4a3b1f829ae 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.ignore @@ -12,3 +12,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! CPListImageRowItem::setImageTitles: not found +!missing-null-allowed! 'System.Void CarPlay.ICPPlayableItem::set_PlaybackConfiguration(CarPlay.CPPlaybackConfiguration)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ClassKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ClassKit.ignore index 569d612c56b..832115a071e 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ClassKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ClassKit.ignore @@ -6,3 +6,4 @@ !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::FindContextsMatching(Foundation.NSPredicate,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::FindContextsMatching(System.String[],System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::Save(System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 +!missing-null-allowed! 'System.Void ClassKit.ICLSContextProvider::UpdateDescendants(ClassKit.CLSContext,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreImage.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreImage.ignore index 704f52f5418..2a05c2087b0 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreImage.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreImage.ignore @@ -1,3 +1,7 @@ ## OSX-only API, rdar #22524785 ## see https://trello.com/c/kpksFWto/6-22524785-coreimage-headers-discrepancies !missing-selector! CIKernel::setROISelector: not bound +!extra-null-allowed! 'System.Void CoreImage.ICIBlurredRectangleGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIColorAbsoluteDifferenceProtocol::set_Image2(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIDistanceGradientFromRedMaskProtocol::set_InputImage(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreNFC.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreNFC.ignore index 68eb7857889..297e34189d9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreNFC.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreNFC.ignore @@ -1,3 +1,36 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void CoreNFC.NFCNdefReaderSession::ConnectToTag(CoreNFC.INFCNdefTag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void CoreNFC.NFCTagReaderSession::ConnectTo(CoreNFC.INFCTag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::StayQuiet(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!deprecated-attribute-missing! NFCISO15693Tag::getSystemInfoWithRequestFlag:completionHandler: missing a [Deprecated] attribute +!deprecated-attribute-missing! NFCISO15693Tag::lockDFSIDWithRequestFlag:completionHandler: missing a [Deprecated] attribute +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::RequestResponse(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::RequestService(Foundation.NSData[],System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::RequestSystemCode(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCFeliCaTag::Send(Foundation.NSData,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::Challenge(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::CustomCommand(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,Foundation.NSData,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedLockBlock(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedReadMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedReadSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedWriteMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,Foundation.NSData[],System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ExtendedWriteSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.IntPtr,Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::GetMultipleBlockSecurityStatus(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::LockAfi(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::LockBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::LockDsfId(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ReadMultipleBlocks(CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ReadMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ReadSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::ResetToReady(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::Select(CoreNFC.NFCIso15693RequestFlag,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::SendCustomCommand(CoreNFC.NFCIso15693CustomCommandConfiguration,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteAfi(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteDsfi(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,Foundation.NSData[],System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCIso15693Tag::WriteSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCMiFareTag::SendMiFareCommand(Foundation.NSData,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::ReadNdef(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::ReadNdef(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::WriteLock(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void CoreNFC.INFCNdefTag::WriteNdef(CoreNFC.NFCNdefMessage,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.ignore index 03c9c220dec..17c3ecb8853 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.ignore @@ -47,3 +47,12 @@ # NSFileProviderKnownFolders is macOS-only natively (API_UNAVAILABLE on the typedef), but the managed enum is bound and used by bound API. !unknown-native-enum! NSFileProviderKnownFolders bound +!extra-null-allowed! 'FileProvider.NSFileProviderItemVersion FileProvider.INSFileProviderItem::get_ItemVersion()' has a extraneous [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderCustomAction::PerformAction(System.String,System.String[],System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderReplicatedExtension::DeleteItem(System.String,FileProvider.NSFileProviderItemVersion,FileProvider.NSFileProviderDeleteItemOptions,FileProvider.NSFileProviderRequest,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderReplicatedExtension::GetItem(System.String,FileProvider.NSFileProviderRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderReplicatedExtension::GetItem(System.String,FileProvider.NSFileProviderRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderServicing::GetSupportedServiceSources(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderServicing::GetSupportedServiceSources(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderThumbnailing::FetchThumbnails(System.String[],CoreGraphics.CGSize,FileProvider.NSFileProviderPerThumbnailCompletionHandler,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void FileProvider.INSFileProviderEnumerator::CurrentSyncAnchor(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore index 89f6d71a3ff..4acc5b8c0ea 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore @@ -13,7 +13,7 @@ !missing-null-allowed! 'System.Void Foundation.NSBundleResourceRequest::BeginAccessingResources(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileManager::GetFileProviderServices(Foundation.NSUrl,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileManager::GetFileProviderServices(Foundation.NSUrl,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #1 -!missing-null-allowed! 'System.Void Foundation.NSFilePresenter::AccommodatePresentedItemEviction(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSFilePresenter::AccommodatePresentedItemEviction(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileProviderService::GetFileProviderConnection(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileProviderService::GetFileProviderConnection(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 @@ -22,3 +22,16 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! NSInputStream::_setCFClientFlags:callback:context: not found +!missing-null-allowed! 'Foundation.NSCachedUrlResponse Foundation.INSUrlConnectionDataDelegate::WillCacheResponse(Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSInputStream Foundation.INSUrlConnectionDataDelegate::NeedNewBodyStream(Foundation.NSUrlConnection,Foundation.NSUrlRequest)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDataDelegate::WillCacheResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidBecomeInvalid(Foundation.NSUrlSession,Foundation.NSError)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.ignore index b91bd0531a5..6f771ee3bb9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.ignore @@ -1,2 +1,3 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void GameController.GCVirtualController::Connect(System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 +!deprecated-attribute-missing! GCDevice::physicalInputProfile missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameplayKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameplayKit.ignore new file mode 100644 index 00000000000..79c664559ac --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameplayKit.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'GameplayKit.IGKGameModelUpdate GameplayKit.IGKStrategist::GetBestMoveForActivePlayer()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Messages.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Messages.ignore index b1091684b28..29f39e34cd9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Messages.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Messages.ignore @@ -13,3 +13,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! MSSticker::initWithFileURL:identifier:localizedDescription: not found +!missing-null-allowed! 'UIKit.UIColor Messages.IMSMessagesAppTranscriptPresentation::get_MessageTintColor()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore index 59a664d8e75..2e673028db7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore @@ -10,3 +10,70 @@ !unknown-selector! MTLLinkedFunctions::setMotionTransformBuffer: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformBufferOffset: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformCount: not found +!deprecated-attribute-missing! MTLBlitCommandEncoder::getTextureAccessCounters:region:mipLevel:slice:resetCounters:countersBuffer:countersBufferOffset: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBlitCommandEncoder::resetTextureAccessCounters:region:mipLevel:slice: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::areBarycentricCoordsSupported missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::newLibraryWithFile:error: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::supportsFeatureSet: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFunction::newArgumentEncoderWithBufferIndex:reflection: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeap: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeaps:count: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResource:usage: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResources:count:usage: missing a [Deprecated] attribute +!missing-null-allowed! 'Foundation.NSError Metal.IMTLCommandBuffer::get_Error()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLAccelerationStructureCommandEncoder Metal.IMTLCommandBuffer::CreateAccelerationStructureCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::CreateBlitCommandEncoder(Metal.MTLBlitPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::get_BlitCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBuffer Metal.IMTLDevice::CreateBufferNoCopy(System.IntPtr,System.UIntPtr,Metal.MTLResourceOptions,Metal.MTLDeallocator)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::CreateComputeCommandEncoder(Metal.MTLComputePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::get_ComputeCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLComputePipelineState::CreateComputePipelineState(Metal.IMTLFunction[],Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.MTLComputePipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFence Metal.IMTLDevice::CreateFence()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunction Metal.IMTLLibrary::CreateFunction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunctionHandle Metal.IMTLComputePipelineState::CreateFunctionHandle(Metal.IMTLFunction)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLIntersectionFunctionTable Metal.IMTLComputePipelineState::CreateIntersectionFunctionTable(Metal.MTLIntersectionFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateDefaultLibrary()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(CoreFoundation.DispatchData,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderCommandEncoder Metal.IMTLCommandBuffer::CreateRenderCommandEncoder(Metal.MTLRenderPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLResourceStateCommandEncoder Metal.IMTLCommandBuffer::CreateResourceStateCommandEncoder(Metal.MTLResourceStatePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLVisibleFunctionTable Metal.IMTLComputePipelineState::CreateVisibleFunctionTable(Metal.MTLVisibleFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.MTLVertexAttribute[] Metal.IMTLFunction::get_VertexAttributes()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLDepthStencilState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLRenderPipelineState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLSamplerState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Metal.IMTL4MachineLearningCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTL4RenderCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable,Metal.MTLRenderStages)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLAccelerationStructureCommandEncoder::RefitAccelerationStructure(Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'System.Void Metal.IMTLCommandBuffer::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandEncoder::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandQueue::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,System.Action`2)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetDepthStencilState(Metal.IMTLDepthStencilState)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetObjectBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLResource::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore new file mode 100644 index 00000000000..2e58e541304 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore @@ -0,0 +1,4 @@ +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShaders.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShaders.ignore index 618ff523ceb..fa969d0307a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShaders.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShaders.ignore @@ -15,3 +15,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! MPSCNNKernel::sourceRegionForDestinationSize: not found +!missing-null-allowed! 'System.String MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource::get_Label()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ModelIO.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ModelIO.ignore index 5032dc29901..21e2a115ce8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ModelIO.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ModelIO.ignore @@ -5,3 +5,12 @@ !unknown-selector! MDLAsset::componentConformingToProtocol: not found !unknown-selector! MDLAsset::components not found !unknown-selector! MDLAsset::setComponent:forProtocol: not found +!extra-null-allowed! 'ModelIO.IMDLMeshBufferZone ModelIO.IMDLMeshBuffer::get_Zone()' has a extraneous [NullAllowed] on return type +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::get_Matrix(): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::GetLocalTransform(System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! Foundation.NSData ModelIO.IMDLLightProbeIrradianceDataSource::GetSphericalHarmonicsCoefficients(System.Numerics.Vector3): simd type: vector_float3 +!wrong-simd-missing-marshaldirective! ModelIO.MDLAxisAlignedBoundingBox ModelIO.IMDLLightProbeIrradianceDataSource::get_BoundingBox(): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLLightProbeIrradianceDataSource::set_BoundingBox(ModelIO.MDLAxisAlignedBoundingBox): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::set_Matrix(CoreGraphics.NMatrix4): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4,System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4): simd type: matrix_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PhotosUI.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PhotosUI.ignore new file mode 100644 index 00000000000..7f4a0a12b79 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PhotosUI.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'System.Void PhotosUI.IPHContentEditingController::FinishContentEditing(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-QuickLook.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-QuickLook.ignore new file mode 100644 index 00000000000..0f3a3463024 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-QuickLook.ignore @@ -0,0 +1,4 @@ +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::PreparePreviewOfFile(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::PreparePreviewOfSearchableItem(System.String,System.String,System.Action`1)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::ProvidePreview(QuickLook.QLFilePreviewRequest,System.Action`2)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLook.IQLPreviewingController::ProvidePreview(QuickLook.QLFilePreviewRequest,System.Action`2)' is missing a '?' on parameter 'handler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore index e6432b67bed..aa95ba557f8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore @@ -121,14 +121,14 @@ !missing-selector! UITabBarItemAppearance::copy not bound # Initial result from new rule extra-null-allowed -!extra-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type +!extra-null-allowed! 'Foundation.NSIndexPath UIKit.IUICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Name(System.String)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Selector(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIBezierPath::set_CGPath(CoreGraphics.CGPath)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UICollectionReusableView::ApplyLayoutAttributes(UIKit.UICollectionViewLayoutAttributes)' has a extraneous [NullAllowed] on parameter #0 -!extra-null-allowed! 'System.Void UIKit.UIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1 +!extra-null-allowed! 'System.Void UIKit.IUIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::AddBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::RemoveBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIMarkupTextPrintFormatter::.ctor(System.String)' has a extraneous [NullAllowed] on parameter #0 @@ -146,7 +146,7 @@ !extra-null-allowed! 'UIKit.UIView UIKit.UIScreen::SnapshotView(System.Boolean)' has a extraneous [NullAllowed] on return type # Initial result from new rule missing-null-allowed -!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSAttributedString UIKit.IUIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSProgress UIKit.UIDocument::get_Progress()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #3 @@ -154,9 +154,9 @@ !missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::WriteAdditionalContent(Foundation.NSObject,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean UIKit.UIPrintInteractionController::PrintToPrinter(UIKit.UIPrinter,UIKit.UIPrintInteractionCompletionHandler)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Boolean UIKit.UIScrollView::TouchesShouldBegin(Foundation.NSSet,UIKit.UIEvent,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Double UIKit.UIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean UIKit.IUISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Double UIKit.IUIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityAttributedUserInputLabels(Foundation.NSAttributedString[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityUserInputLabels(System.String[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1 @@ -193,8 +193,8 @@ !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesChanged(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesEnded(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIScene::set_Title(System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UISearchBar::_SetScopeBarButtonTitle(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISearchTextField::set_TokenBackgroundColor(UIKit.UIColor)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::.ctor(Foundation.NSArray)' is missing an [NullAllowed] on parameter #0 @@ -204,24 +204,24 @@ !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetTitle(System.String,System.IntPtr)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITabBarController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITableViewController::set_TableView(UIKit.UITableView)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITableViewDelegate::DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUITableViewDelegate::DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UITableViewHeaderFooterView::.ctor(Foundation.NSString)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITextView::set_AttributedText(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITextView::set_WeakLinkTextAttributes(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.UIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.IUIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIAlertAction UIKit.UIAlertAction::Create(System.String,UIKit.UIAlertActionStyle,System.Action`1)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'UIKit.UIBezierPath UIKit.UICollisionBehavior::GetBoundary(Foundation.NSObject)' is missing an [NullAllowed] on return type @@ -247,7 +247,7 @@ !missing-null-allowed! 'UIKit.UIGestureRecognizer UIKit.UINavigationController::get_InteractivePopGestureRecognizer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIGestureRecognizer[] UIKit.UITouch::get_GestureRecognizers()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIActivity::get_Image()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIImage UIKit.UIActivityItemSource::GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIImage UIKit.IUIActivityItemSource::GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackButtonBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type @@ -286,7 +286,7 @@ !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPasteboard UIKit.UIPasteboard::FromName(System.String,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPinchGestureRecognizer UIKit.UIScrollView::get_PinchGestureRecognizer()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIPresentationController UIKit.IUIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrinter UIKit.UIPrinterPickerController::get_SelectedPrinter()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintFormatter[] UIKit.UIPrintPageRenderer::PrintFormattersForPage(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintInfo UIKit.UIPrintInfo::FromDictionary(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 @@ -297,9 +297,9 @@ !missing-null-allowed! 'UIKit.UIScreenMode UIKit.UIScreen::get_PreferredMode()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UITextField[] UIKit.UIAlertController::get_TextFields()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UITextInputMode UIKit.UIResponder::get_TextInputMode()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UITextPosition UIKit.UITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UITextRange UIKit.UITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIDocumentInteractionControllerDelegate::ViewForPreview(UIKit.UIDocumentInteractionController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIDocumentInteractionControllerDelegate::ViewForPreview(UIKit.UIDocumentInteractionController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIDynamicAnimator::get_ReferenceView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIGestureRecognizer::get_View()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIPickerView::ViewFor(System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type @@ -307,28 +307,28 @@ !missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_PresentedView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputAccessoryView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputView()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UITouch::get_View()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIActivity::get_ViewController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_TopViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_VisibleViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISearchController::get_SearchResultsController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type @@ -390,19 +390,19 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void UIKit.NSTextContentManager::SynchronizeTextLayoutManagers(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIApplication::SetAlternateIconName(System.String,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::ImportDocument(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::ImportDocument(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RenameDocument(Foundation.NSUrl,System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RenameDocument(Foundation.NSUrl,System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RevealDocument(Foundation.NSUrl,System.Boolean,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewController::RevealDocument(Foundation.NSUrl,System.Boolean,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 -!missing-null-allowed! 'System.Void UIKit.UIDocumentBrowserViewControllerDelegate::DidRequestDocumentCreation(UIKit.UIDocumentBrowserViewController,System.Action`2)' is missing a '?' on parameter 'importHandler' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIDocumentBrowserViewControllerDelegate::DidRequestDocumentCreation(UIKit.UIDocumentBrowserViewController,System.Action`2)' is missing a '?' on parameter 'importHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImage::PrepareForDisplay(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImage::PrepareThumbnail(CoreGraphics.CGSize,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImageReader::GetImage(Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImageReader::GetImage(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIIndirectScribbleInteractionDelegate::FocusElementIfNeeded(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject,CoreGraphics.CGPoint,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIIndirectScribbleInteractionDelegate::FocusElementIfNeeded(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject,CoreGraphics.CGPoint,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPasteboard::DetectPatterns(Foundation.NSSet`1,Foundation.NSIndexSet,System.Action`2[],Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPasteboard::DetectPatterns(Foundation.NSSet`1,Foundation.NSIndexSet,System.Action`2[],Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'System.Void UIKit.UIPasteboard::DetectPatterns(Foundation.NSSet`1,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 @@ -419,3 +419,36 @@ !unknown-selector! +UIFocusDebugger::checkFocusGroupTreeForEnvironment: not found !unknown-selector! UIDocumentBrowserAction::imageOnlyForContextMenu not found !unknown-selector! UIDocumentBrowserAction::setImageOnlyForContextMenu: not found +!extra-null-allowed! 'CoreGraphics.CGPoint UIKit.IUIDragDropSession::LocationInView(UIKit.UIView)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'CoreGraphics.CGRect UIKit.IUITextInput::GetCaretRectForPosition(UIKit.UITextPosition)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void UIKit.IUIResponderStandardEditActions::ShowWritingTools(Foundation.NSObject)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'Foundation.NSDictionary UIKit.IUITextInput::GetTextStyling(UIKit.UITextPosition,UIKit.UITextStorageDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSIndexPath UIKit.IUIDataSourceModelAssociation::GetIndexPath(System.String,UIKit.UIView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransition(System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransitionInView(UIKit.UIView,System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransitionInView(UIKit.UIView,System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.String UIKit.IUIAccessibilityReadingContent::GetAccessibilityContent(System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIAccessibilityReadingContent::GetAccessibilityPageContent()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIDataSourceModelAssociation::GetModelIdentifier(Foundation.NSIndexPath,UIKit.UIView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIGuidedAccessRestrictionDelegate::GetDetailTextForGuidedAccessRestriction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIGuidedAccessRestrictionDelegate::GetTextForGuidedAccessRestriction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUITextInput::TextInRange(UIKit.UITextRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String[] UIKit.IUIGuidedAccessRestrictionDelegate::get_GetGuidedAccessRestrictionIdentifiers()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void UIKit.INSTextElementProvider::Synchronize(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIMenuLeaf::set_SelectedImage(UIKit.UIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInput::SetMarkedText(System.String,Foundation.NSRange)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputTraits::set_ConversationContext(UIKit.UIConversationContext)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'UIKit.IUIPopoverPresentationControllerSourceItem UIKit.IUIMenuLeaf::get_PresentationSourceItem()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetClosestPositionToPoint(CoreGraphics.CGPoint,UIKit.UITextRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetClosestPositionToPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextPosition,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextPosition,UIKit.UITextLayoutDirection,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextRange,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPositionWithinRange(UIKit.UITextRange,UIKit.UITextLayoutDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::get_MarkedTextRange()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetCharacterRangeAtPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetTextRange(UIKit.UITextPosition,UIKit.UITextPosition)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIInteraction::get_View()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIViewControllerTransitionCoordinatorContext::GetTransitionViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIViewControllerTransitionCoordinatorContext::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.ignore index 5d37d6508b6..0f79f0aaf33 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.ignore @@ -185,15 +185,15 @@ !extra-null-allowed! 'System.Void AppKit.NSAlert::BeginSheet(AppKit.NSWindow,System.Action`1)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void AppKit.NSCell::EndEditing(AppKit.NSText)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void AppKit.NSControl::EndEditing(AppKit.NSText)' has a extraneous [NullAllowed] on parameter #0 -!extra-null-allowed! 'System.Void AppKit.NSFilePromiseProviderDelegate::WritePromiseToUrl(AppKit.NSFilePromiseProvider,Foundation.NSUrl,System.Action`1)' has a extraneous [NullAllowed] on parameter #2 +!extra-null-allowed! 'System.Void AppKit.INSFilePromiseProviderDelegate::WritePromiseToUrl(AppKit.NSFilePromiseProvider,Foundation.NSUrl,System.Action`1)' has a extraneous [NullAllowed] on parameter #2 !extra-null-allowed! 'System.Void AppKit.NSFontManager::set_Action(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void AppKit.NSSegmentedControl::SetLabel(System.String,System.IntPtr)' has a extraneous [NullAllowed] on parameter #0 # Initial result from new rule missing-null-allowed -!missing-null-allowed! 'AppKit.INSPasteboardWriting AppKit.NSCollectionViewDelegate::PasteboardWriterForItem(AppKit.NSCollectionView,System.UIntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.INSPasteboardWriting AppKit.NSOutlineViewDataSource::PasteboardWriterForItem(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.INSPasteboardWriting AppKit.NSTableViewDataSource::GetPasteboardWriterForRow(AppKit.NSTableView,System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.INSSharingServiceDelegate AppKit.NSSharingServicePickerDelegate::DelegateForSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.INSPasteboardWriting AppKit.INSCollectionViewDelegate::PasteboardWriterForItem(AppKit.NSCollectionView,System.UIntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.INSPasteboardWriting AppKit.INSOutlineViewDataSource::PasteboardWriterForItem(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.INSPasteboardWriting AppKit.INSTableViewDataSource::GetPasteboardWriterForRow(AppKit.NSTableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.INSSharingServiceDelegate AppKit.INSSharingServicePickerDelegate::DelegateForSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSAppearance AppKit.NSAppearance::GetAppearance(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSButton AppKit.NSAlert::get_SuppressionButton()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSButton AppKit.NSWindow::StandardWindowButton(AppKit.NSWindowButton)' is missing an [NullAllowed] on return type @@ -204,10 +204,10 @@ !missing-null-allowed! 'AppKit.NSCell AppKit.NSMatrix::CellAtRowColumn(System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSCell AppKit.NSMatrix::CellWithTag(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSCell AppKit.NSMatrix::get_SelectedCell()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSCell AppKit.NSOutlineViewDelegate::GetCell(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'AppKit.NSCell AppKit.NSOutlineViewDelegate::GetCell(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSCell AppKit.NSTableViewDelegate::GetDataCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'AppKit.NSCell AppKit.NSTableViewDelegate::GetDataCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSCell AppKit.INSOutlineViewDelegate::GetCell(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'AppKit.NSCell AppKit.INSOutlineViewDelegate::GetCell(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSCell AppKit.INSTableViewDelegate::GetDataCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'AppKit.NSCell AppKit.INSTableViewDelegate::GetDataCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSCell[] AppKit.NSBrowser::SelectedCells()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSColor AppKit.NSBrowserCell::HighlightColorInView(AppKit.NSView)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSColor AppKit.NSColor::BlendedColor(System.Runtime.InteropServices.NFloat,AppKit.NSColor)' is missing an [NullAllowed] on return type @@ -265,11 +265,11 @@ !missing-null-allowed! 'AppKit.NSGraphicsContext AppKit.NSPrintOperation::get_Context()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSBrowserCell::get_BranchImage()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSBrowserCell::get_HighlightedBranchImage()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSImage AppKit.NSImageDelegate::ImageDidNotDraw(Foundation.NSObject,CoreGraphics.CGRect)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSImage AppKit.INSImageDelegate::ImageDidNotDraw(Foundation.NSObject,CoreGraphics.CGRect)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSSegmentedCell::GetImageForSegment(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSSegmentedControl::GetImage(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSSharingService::get_AlternateImage()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSImage AppKit.NSSharingServiceDelegate::TransitionImageForShareItem(AppKit.NSSharingService,AppKit.INSPasteboardWriting,CoreGraphics.CGRect)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSImage AppKit.INSSharingServiceDelegate::TransitionImageForShareItem(AppKit.NSSharingService,AppKit.INSPasteboardWriting,CoreGraphics.CGRect)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSTableView::GetIndicatorImage(AppKit.NSTableColumn)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImage AppKit.NSWorkspace::IconForFiles(System.String[])' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImageRep AppKit.NSImage::BestRepresentation(CoreGraphics.CGRect,AppKit.NSGraphicsContext,Foundation.NSDictionary)' is missing an [NullAllowed] on return type @@ -280,17 +280,17 @@ !missing-null-allowed! 'AppKit.NSImageRep[] AppKit.NSImageRep::ImageRepsFromPasteboard(AppKit.NSPasteboard)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSImageRep[] AppKit.NSImageRep::ImageRepsFromUrl(Foundation.NSUrl)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSLayoutManager AppKit.NSTypesetter::get_LayoutManager()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSMenu AppKit.NSApplicationDelegate::ApplicationDockMenu(AppKit.NSApplication)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSMenu AppKit.INSApplicationDelegate::ApplicationDockMenu(AppKit.NSApplication)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenu AppKit.NSCell::MenuForEvent(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSMenu AppKit.NSDockTilePlugIn::DockMenu()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSMenu AppKit.INSDockTilePlugIn::DockMenu()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenu AppKit.NSFontManager::FontMenu(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenu AppKit.NSSegmentedCell::GetMenu(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenu AppKit.NSSegmentedControl::GetMenu(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenu AppKit.NSSpellChecker::MenuForResults(Foundation.NSTextCheckingResult,System.String,Foundation.NSDictionary,CoreGraphics.CGPoint,AppKit.NSView)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'AppKit.NSMenu AppKit.NSSpellChecker::MenuForResults(Foundation.NSTextCheckingResult,System.String,Foundation.NSDictionary,CoreGraphics.CGPoint,AppKit.NSView)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSMenu AppKit.NSTextViewDelegate::MenuForEvent(AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSMenu AppKit.NSTokenFieldCellDelegate::GetMenu(AppKit.NSTokenFieldCell,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSMenu AppKit.NSTokenFieldDelegate::GetMenu(AppKit.NSTokenField,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSMenu AppKit.INSTextViewDelegate::MenuForEvent(AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSMenu AppKit.INSTokenFieldCellDelegate::GetMenu(AppKit.NSTokenFieldCell,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSMenu AppKit.INSTokenFieldDelegate::GetMenu(AppKit.NSTokenField,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenuItem AppKit.NSMenuItem::get_ParentItem()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenuItem AppKit.NSPopUpButton::get_LastItem()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSMenuItem AppKit.NSPopUpButton::get_SelectedItem()' is missing an [NullAllowed] on return type @@ -333,9 +333,9 @@ !missing-null-allowed! 'AppKit.NSStoryboard AppKit.NSViewController::get_Storyboard()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSStoryboard AppKit.NSWindowController::get_Storyboard()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSTableColumn AppKit.NSTableView::FindTableColumn(Foundation.NSString)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSTableRowView AppKit.NSOutlineViewDelegate::RowViewForItem(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSTableRowView AppKit.INSOutlineViewDelegate::RowViewForItem(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSTableRowView AppKit.NSTableView::GetRowView(System.IntPtr,System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSTableRowView AppKit.NSTableViewDelegate::CoreGetRowView(AppKit.NSTableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSTableRowView AppKit.INSTableViewDelegate::CoreGetRowView(AppKit.NSTableView,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSTabView AppKit.NSTabViewItem::get_TabView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSTabViewItem AppKit.NSTabView::get_Selected()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSTabViewItem AppKit.NSTabView::TabViewItemAtPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type @@ -355,37 +355,37 @@ !missing-null-allowed! 'AppKit.NSTreeNode AppKit.NSTreeNode::get_ParentNode()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSTreeNode[] AppKit.NSTreeNode::get_Children()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSView AppKit.NSGestureRecognizer::get_View()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSView AppKit.NSOutlineViewDelegate::GetView(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSView AppKit.INSOutlineViewDelegate::GetView(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSView AppKit.NSPrintOperation::get_View()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSView AppKit.NSTableRowView::ViewAtColumn(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSView AppKit.NSTableView::GetView(System.IntPtr,System.IntPtr,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSView AppKit.NSTableView::MakeView(System.String,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSView AppKit.NSTableViewDelegate::GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'AppKit.NSView AppKit.NSTableViewDelegate::GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSView AppKit.NSTextFinderBarContainer::get_ContentView()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSViewController AppKit.NSBrowserDelegate::HeaderViewControllerForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'AppKit.NSViewController AppKit.NSBrowserDelegate::HeaderViewControllerForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSViewController AppKit.NSBrowserDelegate::PreviewViewControllerForLeafItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSView AppKit.INSTableViewDelegate::GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'AppKit.NSView AppKit.INSTableViewDelegate::GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSView AppKit.INSTextFinderBarContainer::get_ContentView()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSViewController AppKit.INSBrowserDelegate::HeaderViewControllerForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'AppKit.NSViewController AppKit.INSBrowserDelegate::HeaderViewControllerForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSViewController AppKit.INSBrowserDelegate::PreviewViewControllerForLeafItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSViewController AppKit.NSPageController::get_SelectedViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSViewController AppKit.NSViewController::get_ParentViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSViewController AppKit.NSViewController::get_PresentingViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSViewController[] AppKit.NSViewController::get_PresentedViewControllers()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSWindow AppKit.NSDocument::get_WindowForSheet()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSWindow AppKit.NSEvent::get_Window()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSWindow AppKit.NSPopoverDelegate::GetDetachableWindowForPopover(AppKit.NSPopover)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSWindow AppKit.NSSharingServiceDelegate::SourceWindowForShareItems(AppKit.NSSharingService,Foundation.NSObject[],AppKit.NSSharingContentScope)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSWindow AppKit.INSPopoverDelegate::GetDetachableWindowForPopover(AppKit.NSPopover)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSWindow AppKit.INSSharingServiceDelegate::SourceWindowForShareItems(AppKit.NSSharingService,Foundation.NSObject[],AppKit.NSSharingContentScope)' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSWindow AppKit.NSWindow::get_AttachedSheet()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSWindow AppKit.NSWindow::get_SheetParent()' is missing an [NullAllowed] on return type !missing-null-allowed! 'AppKit.NSWindow[] AppKit.NSWindow::get_ChildWindows()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSWindow[] AppKit.NSWindowDelegate::CustomWindowsToEnterFullScreen(AppKit.NSWindow)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'AppKit.NSWindow[] AppKit.NSWindowDelegate::CustomWindowsToExitFullScreen(AppKit.NSWindow)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSWindow[] AppKit.INSWindowDelegate::CustomWindowsToEnterFullScreen(AppKit.NSWindow)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSWindow[] AppKit.INSWindowDelegate::CustomWindowsToExitFullScreen(AppKit.NSWindow)' is missing an [NullAllowed] on return type !missing-null-allowed! 'CoreGraphics.CGColorSpace AppKit.NSColorSpace::get_ColorSpace()' is missing an [NullAllowed] on return type !missing-null-allowed! 'CoreGraphics.CGImage AppKit.NSImage::AsCGImage(CoreGraphics.CGRect&,AppKit.NSGraphicsContext,Foundation.NSDictionary)' is missing an [NullAllowed] on return type !missing-null-allowed! 'CoreGraphics.CGImage AppKit.NSImageRep::AsCGImage(CoreGraphics.CGRect&,AppKit.NSGraphicsContext,Foundation.NSDictionary)' is missing an [NullAllowed] on return type !missing-null-allowed! 'CoreGraphics.CGPoint AppKit.NSPanGestureRecognizer::TranslationInView(AppKit.NSView)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'CoreGraphics.CGPoint AppKit.NSPanGestureRecognizer::VelocityInView(AppKit.NSView)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'CoreGraphics.CGRect AppKit.NSMenuDelegate::ConfinementRectForMenu(AppKit.NSMenu,AppKit.NSScreen)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'CoreGraphics.CGRect AppKit.NSPageControllerDelegate::GetFrame(AppKit.NSPageController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'CoreGraphics.CGRect AppKit.INSMenuDelegate::ConfinementRectForMenu(AppKit.NSMenu,AppKit.NSScreen)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'CoreGraphics.CGRect AppKit.INSPageControllerDelegate::GetFrame(AppKit.NSPageController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'CoreImage.CIContext AppKit.NSGraphicsContext::get_CIContext()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSAffineTransform AppKit.NSFontDescriptor::get_Matrix()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSArray AppKit.NSWindow::WindowNumbersWithOptions(AppKit.NSWindowNumberListOptions)' is missing an [NullAllowed] on return type @@ -406,7 +406,7 @@ !missing-null-allowed! 'Foundation.NSDictionary AppKit.NSCollectionViewLayoutInvalidationContext::get_InvalidatedSupplementaryIndexPaths()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSDictionary AppKit.NSDocument::FileAttributesToWrite(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSDictionary AppKit.NSGraphicsContext::get_Attributes()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSDictionary AppKit.NSRuleEditorDelegate::PredicateParts(AppKit.NSRuleEditor,Foundation.NSObject,Foundation.NSObject,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSDictionary AppKit.INSRuleEditorDelegate::PredicateParts(AppKit.NSRuleEditor,Foundation.NSObject,Foundation.NSObject,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSDictionary AppKit.NSTableView::get_RegisteredNibsByIdentifier()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSDictionary AppKit.NSTrackingArea::get_UserInfo()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSDictionary AppKit.NSWorkspace::DesktopImageOptions(AppKit.NSScreen)' is missing an [NullAllowed] on return type @@ -423,12 +423,12 @@ !missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowser::ParentForItems(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowser::SelectedCell()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowser::SelectedCellInColumn(System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowserDelegate::ObjectValueForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowserDelegate::ObjectValueForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowserDelegate::RootItemForBrowser(AppKit.NSBrowser)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSBrowserDelegate::ObjectValueForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Foundation.NSObject AppKit.INSBrowserDelegate::ObjectValueForItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSBrowserDelegate::RootItemForBrowser(AppKit.NSBrowser)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSComboBox::get_SelectedValue()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSComboBoxCell::get_SelectedValue()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSComboBoxDataSource::ObjectValueForItem(AppKit.NSComboBox,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSComboBoxDataSource::ObjectValueForItem(AppKit.NSComboBox,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSDockTile::get_Owner()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSDocumentController::MakeDocument(Foundation.NSUrl,Foundation.NSUrl,System.String,Foundation.NSError&)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSDocumentController::MakeDocument(Foundation.NSUrl,System.String,Foundation.NSError&)' is missing an [NullAllowed] on return type @@ -443,17 +443,17 @@ !missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineView::GetChild(System.IntPtr,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineView::GetParent(Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineView::ItemAtRow(System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineViewDataSource::GetObjectValue(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineViewDataSource::ItemForPersistentObject(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineViewDataSource::PersistentObjectForItem(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSOutlineViewDelegate::GetNextTypeSelectMatch(AppKit.NSOutlineView,Foundation.NSObject,Foundation.NSObject,System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSOutlineViewDataSource::GetObjectValue(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSOutlineViewDataSource::ItemForPersistentObject(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSOutlineViewDataSource::PersistentObjectForItem(AppKit.NSOutlineView,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSOutlineViewDelegate::GetNextTypeSelectMatch(AppKit.NSOutlineView,Foundation.NSObject,Foundation.NSObject,System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSPasteboard::GetPropertyListForType(System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSPasteboardItem::GetPropertyListForType(System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSResponder::SupplementalTargetForAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSResponder::ValidRequestorForSendType(System.String,System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSStoryboard::InstantiateInitialController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSTableViewDataSource::GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'Foundation.NSObject AppKit.NSTableViewDataSource::GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSTableViewDataSource::GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Foundation.NSObject AppKit.INSTableViewDataSource::GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSTouch::get_Device()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSTrackingArea::get_Owner()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSTreeNode::get_RepresentedObject()' is missing an [NullAllowed] on return type @@ -462,21 +462,21 @@ !missing-null-allowed! 'Foundation.NSObject AppKit.NSWindow::ValidRequestorForSendType(System.String,System.String)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'Foundation.NSObject AppKit.NSWindow::ValidRequestorForSendType(System.String,System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject AppKit.NSWindowController::get_Owner()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject AppKit.NSWindowDelegate::WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'Foundation.NSObject AppKit.NSWindowDelegate::WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSWindowDelegate::WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Foundation.NSObject AppKit.INSWindowDelegate::WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject[] AppKit.NSArrayController::AutomaticRearrangementKeyPaths()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject[] AppKit.NSPasteboard::ReadObjectsForClasses(ObjCRuntime.Class[],Foundation.NSDictionary)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject[] AppKit.NSPredicateEditorRowTemplate::get_Operators()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject[] AppKit.NSTokenFieldCellDelegate::Read(AppKit.NSTokenFieldCell,AppKit.NSPasteboard)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSObject[] AppKit.NSTokenFieldDelegate::Read(AppKit.NSTokenField,AppKit.NSPasteboard)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSTokenFieldCellDelegate::Read(AppKit.NSTokenFieldCell,AppKit.NSPasteboard)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSTokenFieldDelegate::Read(AppKit.NSTokenField,AppKit.NSPasteboard)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSPredicate AppKit.NSPredicateEditorRowTemplate::PredicateWithSubpredicates(Foundation.NSPredicate[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'Foundation.NSPredicate AppKit.NSRuleEditor::get_Predicate()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSPredicate AppKit.NSRuleEditor::GetPredicate(System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSPredicate[] AppKit.NSPredicateEditorRowTemplate::DisplayableSubpredicatesOfPredicate(Foundation.NSPredicate)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSSet AppKit.NSCollectionViewLayoutInvalidationContext::get_InvalidatedItemIndexPaths()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSString[] AppKit.NSAnimation::get_RunLoopModesForAnimating()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSUndoManager AppKit.NSTextViewDelegate::GetUndoManager(AppKit.NSTextView)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSUndoManager AppKit.NSWindowDelegate::WillReturnUndoManager(AppKit.NSWindow)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSUndoManager AppKit.INSTextViewDelegate::GetUndoManager(AppKit.NSTextView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSUndoManager AppKit.INSWindowDelegate::WillReturnUndoManager(AppKit.NSWindow)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSUrl AppKit.NSDocument::get_BackupFileUrl()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSUrl AppKit.NSPathControlItem::get_Url()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSUrl AppKit.NSSavePanel::get_Url()' is missing an [NullAllowed] on return type @@ -491,33 +491,33 @@ !missing-null-allowed! 'ObjCRuntime.Class AppKit.NSImageRep::ImageRepClassForType(System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'ObjCRuntime.Class Foundation.NSObject::GetBindingValueClass(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.Boolean AppKit.NSBrowser::IsLeafItem(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Boolean AppKit.NSBrowserDelegate::IsLeafItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSBrowserDelegate::ShouldEditItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSBrowserDelegate::ShouldTypeSelectForEvent(AppKit.NSBrowser,AppKit.NSEvent,System.String)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean AppKit.INSBrowserDelegate::IsLeafItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSBrowserDelegate::ShouldEditItem(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSBrowserDelegate::ShouldTypeSelectForEvent(AppKit.NSBrowser,AppKit.NSEvent,System.String)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean AppKit.NSControl::SendAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean AppKit.NSControl::SendAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSControlTextEditingDelegate::DidFailToFormatString(AppKit.NSControl,System.String,System.String)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Boolean AppKit.NSControlTextEditingDelegate::IsValidObject(AppKit.NSControl,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSControlTextEditingDelegate::DidFailToFormatString(AppKit.NSControl,System.String,System.String)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean AppKit.INSControlTextEditingDelegate::IsValidObject(AppKit.NSControl,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Boolean AppKit.NSMatrix::AcceptsFirstMouse(AppKit.NSEvent)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean AppKit.NSOutlineView::IsItemExpanded(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean AppKit.NSPasteboard::SetDataForType(Foundation.NSData,System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Boolean AppKit.NSSeguePerforming::ShouldPerformSegue(System.String,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSSeguePerforming::ShouldPerformSegue(System.String,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Boolean AppKit.NSSlider::AcceptsFirstMouse(AppKit.NSEvent)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean AppKit.NSSound::SetName(System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Boolean AppKit.NSTableViewDelegate::ShouldEditTableColumn(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSTableViewDelegate::ShouldSelectTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSTableViewDelegate::ShouldShowCellExpansion(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSTableViewDelegate::ShouldTrackCell(AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Boolean AppKit.NSTableViewDelegate::ShouldTypeSelect(AppKit.NSTableView,AppKit.NSEvent,System.String)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean AppKit.INSTableViewDelegate::ShouldEditTableColumn(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSTableViewDelegate::ShouldSelectTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSTableViewDelegate::ShouldShowCellExpansion(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSTableViewDelegate::ShouldTrackCell(AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean AppKit.INSTableViewDelegate::ShouldTypeSelect(AppKit.NSTableView,AppKit.NSEvent,System.String)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean AppKit.NSTabViewController::ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSTabViewDelegate::ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean AppKit.NSTextViewDelegate::ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[])' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean AppKit.INSTabViewDelegate::ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Boolean AppKit.INSTextViewDelegate::ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[])' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean AppKit.NSTreeController::SetSelectionIndexPath(Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean AppKit.NSWindow::TryToPerform(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Boolean AppKit.NSWorkspace::SelectFile(System.String,System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean AppKit.NSWorkspace::SetDesktopImageUrl(Foundation.NSUrl,AppKit.NSScreen,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #3 !missing-null-allowed! 'System.Boolean AppKit.NSWorkspace::SetIconforFile(AppKit.NSImage,System.String,AppKit.NSWorkspaceIconCreationOptions)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.IntPtr AppKit.NSBrowserDelegate::CountChildren(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.IntPtr AppKit.INSBrowserDelegate::CountChildren(AppKit.NSBrowser,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.IntPtr AppKit.NSDocumentController::RunModalOpenPanel(AppKit.NSOpenPanel,System.String[])' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.IntPtr AppKit.NSPopUpButton::IndexOfItem(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.IntPtr AppKit.NSPopUpButton::IndexOfItem(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #0 @@ -525,15 +525,15 @@ !missing-null-allowed! 'System.IntPtr AppKit.NSPopUpButtonCell::IndexOfItemWithRepresentedObject(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.IntPtr AppKit.NSPopUpButtonCell::IndexOfItemWithTargetandAction(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.IntPtr AppKit.NSPopUpButtonCell::IndexOfItemWithTargetandAction(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.IntPtr AppKit.NSRuleEditorDelegate::NumberOfChildren(AppKit.NSRuleEditor,Foundation.NSObject,AppKit.NSRuleEditorRowType)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.IntPtr AppKit.INSRuleEditorDelegate::NumberOfChildren(AppKit.NSRuleEditor,Foundation.NSObject,AppKit.NSRuleEditorRowType)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.IntPtr AppKit.NSSpellChecker::CountWords(System.String,System.String)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.String AppKit.NSBrowser::ColumnTitle(System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSBrowserDelegate::ColumnTitle(AppKit.NSBrowser,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSBrowserDelegate::ColumnTitle(AppKit.NSBrowser,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSColorList::get_Name()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSColorSpace::get_LocalizedName()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSComboBoxCell::CompletedString(System.String)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSComboBoxCellDataSource::CompletedString(AppKit.NSComboBoxCell,System.String)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSComboBoxDataSource::CompletedString(AppKit.NSComboBox,System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSComboBoxCellDataSource::CompletedString(AppKit.NSComboBoxCell,System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSComboBoxDataSource::CompletedString(AppKit.NSComboBox,System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSDocument::FileNameExtensionForSaveOperation(System.String,AppKit.NSSaveOperationType)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSDocument::get_AutosavingFileType()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSDocument::get_FileTypeFromLastRunSavePanel()' is missing an [NullAllowed] on return type @@ -549,8 +549,8 @@ !missing-null-allowed! 'System.String AppKit.NSFontDescriptor::get_PostscriptName()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSFontManager::LocalizedNameForFamily(System.String,System.String)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.String AppKit.NSGlyphInfo::get_GlyphName()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSOpenSavePanelDelegate::UserEnteredFilename(AppKit.NSSavePanel,System.String,System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSOutlineViewDelegate::GetSelectString(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSOpenSavePanelDelegate::UserEnteredFilename(AppKit.NSSavePanel,System.String,System.Boolean)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSOutlineViewDelegate::GetSelectString(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSPasteboard::GetAvailableTypeFromArray(System.String[])' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSPasteboard::GetStringForType(System.String)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSPasteboardItem::GetAvailableTypeFromArray(System.String[])' is missing an [NullAllowed] on return type @@ -566,13 +566,13 @@ !missing-null-allowed! 'System.String AppKit.NSSpellChecker::GetCorrection(Foundation.NSRange,System.String,System.String,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSSpellChecker::GetLanguage(Foundation.NSRange,System.String,Foundation.NSOrthography)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSStoryboardSegue::get_Identifier()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSTableViewDelegate::GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.String AppKit.NSTableViewDelegate::GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSTableViewDelegate::GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.String AppKit.INSTableViewDelegate::GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSTextInputContext::LocalizedNameForInputSource(System.String)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSTokenFieldCellDelegate::GetDisplayString(AppKit.NSTokenFieldCell,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSTokenFieldCellDelegate::GetEditingString(AppKit.NSTokenFieldCell,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSTokenFieldDelegate::GetDisplayString(AppKit.NSTokenField,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String AppKit.NSTokenFieldDelegate::GetEditingString(AppKit.NSTokenField,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSTokenFieldCellDelegate::GetDisplayString(AppKit.NSTokenFieldCell,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSTokenFieldCellDelegate::GetEditingString(AppKit.NSTokenFieldCell,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSTokenFieldDelegate::GetDisplayString(AppKit.NSTokenField,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String AppKit.INSTokenFieldDelegate::GetEditingString(AppKit.NSTokenField,Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSTreeController::ChildrenKeyPathForNode(AppKit.NSTreeNode)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSTreeController::CountKeyPathForNode(AppKit.NSTreeNode)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String AppKit.NSTreeController::LeafKeyPathForNode(AppKit.NSTreeNode)' is missing an [NullAllowed] on return type @@ -584,7 +584,7 @@ !missing-null-allowed! 'System.String[] AppKit.NSSpellChecker::CompletionsForPartialWordRange(Foundation.NSRange,System.String,System.String,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String[] AppKit.NSSpellChecker::GuessesForWordRange(Foundation.NSRange,System.String,System.String,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String[] AppKit.NSSpellChecker::IgnoredWords(System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String[] AppKit.NSTokenFieldDelegate::GetCompletionStrings(AppKit.NSTokenField,System.String,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String[] AppKit.INSTokenFieldDelegate::GetCompletionStrings(AppKit.NSTokenField,System.String,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.Void AppKit.NSAlert::set_HelpAnchor(System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSAlert::set_Icon(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSAnimationContext::set_CompletionHandler(System.Action)' is missing an [NullAllowed] on parameter #0 @@ -602,8 +602,8 @@ !missing-null-allowed! 'System.Void AppKit.NSBrowser::set_CellPrototype(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSBrowserCell::set_AlternateImage(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSBrowserCell::set_Image(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSBrowserDelegate::SetObjectValue(AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void AppKit.NSBrowserDelegate::SetObjectValue(AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Void AppKit.INSBrowserDelegate::SetObjectValue(AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSBrowserDelegate::SetObjectValue(AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Void AppKit.NSButton::set_Sound(AppKit.NSSound)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSButtonCell::.ctor(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSButtonCell::PerformClick(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 @@ -646,7 +646,7 @@ !missing-null-allowed! 'System.Void AppKit.NSControl::TakeIntValueFrom(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSControl::TakeObjectValueFrom(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSControl::TakeStringValueFrom(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSControlTextEditingDelegate::DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Void AppKit.INSControlTextEditingDelegate::DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Void AppKit.NSCustomTouchBarItem::set_ViewController(AppKit.NSViewController)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDatePicker::set_Calendar(Foundation.NSCalendar)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDatePicker::set_Locale(Foundation.NSLocale)' is missing an [NullAllowed] on parameter #0 @@ -658,7 +658,7 @@ !missing-null-allowed! 'System.Void AppKit.NSDatePickerCell::set_MaxDate(Foundation.NSDate)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDatePickerCell::set_MinDate(Foundation.NSDate)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDatePickerCell::set_TimeZone(Foundation.NSTimeZone)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSDockTilePlugIn::SetDockTile(AppKit.NSDockTile)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSDockTilePlugIn::SetDockTile(AppKit.NSDockTile)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDocument::BrowseDocumentVersions(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDocument::LockDocument(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSDocument::LockDocumentWithCompletionHandler(AppKit.NSDocumentLockDocumentCompletionHandler)' is missing an [NullAllowed] on parameter #0 @@ -703,7 +703,7 @@ !missing-null-allowed! 'System.Void AppKit.NSMatrix::set_KeyCell(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSMatrix::set_Prototype(AppKit.NSCell)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSMenu::set_Font(AppKit.NSFont)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSMenuDelegate::MenuWillHighlightItem(AppKit.NSMenu,AppKit.NSMenuItem)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSMenuDelegate::MenuWillHighlightItem(AppKit.NSMenu,AppKit.NSMenuItem)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void AppKit.NSMenuItem::set_AttributedTitle(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSMenuItem::set_MixedStateImage(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSMenuItem::set_OffStateImage(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 @@ -722,13 +722,13 @@ !missing-null-allowed! 'System.Void AppKit.NSObjectController::set_EntityName(System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSObjectController::set_FetchPredicate(Foundation.NSPredicate)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSObjectController::set_ObjectClass(ObjCRuntime.Class)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSOpenSavePanelDelegate::DidChangeToDirectory(AppKit.NSSavePanel,Foundation.NSUrl)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void AppKit.NSOpenSavePanelDelegate::SelectionDidChange(AppKit.NSSavePanel)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSOpenSavePanelDelegate::DidChangeToDirectory(AppKit.NSSavePanel,Foundation.NSUrl)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSOpenSavePanelDelegate::SelectionDidChange(AppKit.NSSavePanel)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSPageController::NavigateBack(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSPageController::NavigateForward(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSPageController::NavigateTo(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSPageControllerDelegate::PrepareViewController(AppKit.NSPageController,AppKit.NSViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Void AppKit.NSPasteboardItemDataProvider::ProvideDataForType(AppKit.NSPasteboard,AppKit.NSPasteboardItem,System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSPageControllerDelegate::PrepareViewController(AppKit.NSPageController,AppKit.NSViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Void AppKit.INSPasteboardItemDataProvider::ProvideDataForType(AppKit.NSPasteboard,AppKit.NSPasteboardItem,System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSPathCell::set_AllowedTypes(System.String[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSPathCell::set_BackgroundColor(AppKit.NSColor)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSPathCell::set_PlaceholderAttributedString(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0 @@ -785,13 +785,13 @@ !missing-null-allowed! 'System.Void AppKit.NSSearchFieldCell::set_SearchMenuTemplate(AppKit.NSMenu)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSSegmentedCell::SetImage(AppKit.NSImage,System.IntPtr)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSSegmentedCell::SetMenu(AppKit.NSMenu,System.IntPtr)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSSeguePerforming::PerformSegue(System.String,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void AppKit.NSSeguePerforming::PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSSeguePerforming::PerformSegue(System.String,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSSeguePerforming::PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void AppKit.NSShadow::set_ShadowColor(AppKit.NSColor)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSSharingService::.ctor(System.String,AppKit.NSImage,AppKit.NSImage,AppKit.NSSharingServiceHandler)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Void AppKit.NSSharingService::set_Recipients(Foundation.NSObject[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSSharingService::set_Subject(System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSSharingServicePickerDelegate::DidChooseSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSSharingServicePickerDelegate::DidChooseSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void AppKit.NSSound::set_PlaybackDeviceID(System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSSpeechRecognizer::set_Commands(System.String[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSSpeechRecognizer::set_DisplayedCommandsTitle(System.String)' is missing an [NullAllowed] on parameter #0 @@ -805,9 +805,9 @@ !missing-null-allowed! 'System.Void AppKit.NSTableView::set_AutosaveName(System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTableView::set_CornerView(AppKit.NSView)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTableView::set_HighlightedTableColumn(AppKit.NSTableColumn)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSTableViewDataSource::SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void AppKit.NSTableViewDataSource::SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Void AppKit.NSTableViewDelegate::WillDisplayCell(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Void AppKit.INSTableViewDataSource::SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSTableViewDataSource::SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Void AppKit.INSTableViewDelegate::WillDisplayCell(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Void AppKit.NSTableViewRowAction::set_BackgroundColor(AppKit.NSColor)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTabView::Select(AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTabView::SelectFirst(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 @@ -817,8 +817,8 @@ !missing-null-allowed! 'System.Void AppKit.NSTabView::TakeSelectedTabViewItemFrom(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTabViewController::DidSelect(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void AppKit.NSTabViewController::WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void AppKit.NSTabViewDelegate::DidSelect(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void AppKit.NSTabViewDelegate::WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSTabViewDelegate::DidSelect(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSTabViewDelegate::WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void AppKit.NSTabViewItem::.ctor(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTabViewItem::set_Identifier(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTabViewItem::set_Image(AppKit.NSImage)' is missing an [NullAllowed] on parameter #0 @@ -857,7 +857,7 @@ !missing-null-allowed! 'System.Void AppKit.NSTextContainer::set_TextView(AppKit.NSTextView)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTextFinder::set_Client(AppKit.INSTextFinderClient)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTextFinder::set_FindBarContainer(AppKit.INSTextFinderBarContainer)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void AppKit.NSTextFinderBarContainer::set_FindBarView(AppKit.NSView)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSTextFinderBarContainer::set_FindBarView(AppKit.NSView)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSTextView_SharingService::OrderFrontSharingServicePicker(AppKit.NSTextView,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void AppKit.NSTokenField::set_CharacterSet(Foundation.NSCharacterSet)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void AppKit.NSToolbarItem::set_MenuFormRepresentation(AppKit.NSMenuItem)' is missing an [NullAllowed] on parameter #0 @@ -920,8 +920,8 @@ !missing-null-allowed! 'AppKit.NSPrintOperation AppKit.NSPrintOperation::EpsFromView(AppKit.NSView,CoreGraphics.CGRect,Foundation.NSMutableData)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'Foundation.NSObject AppKit.NSAccessibilityElement::CreateElement(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSString,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'Foundation.NSObject AppKit.NSAccessibilityElement::CreateElement(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSString,Foundation.NSObject)' is missing an [NullAllowed] on parameter #3 -!missing-null-allowed! 'Foundation.NSObject AppKit.NSBrowserDelegate::GetChild(AppKit.NSBrowser,System.IntPtr,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'Foundation.NSObject AppKit.NSRuleEditorDelegate::ChildForCriterion(AppKit.NSRuleEditor,System.IntPtr,Foundation.NSObject,AppKit.NSRuleEditorRowType)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSObject AppKit.INSBrowserDelegate::GetChild(AppKit.NSBrowser,System.IntPtr,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSObject AppKit.INSRuleEditorDelegate::ChildForCriterion(AppKit.NSRuleEditor,System.IntPtr,Foundation.NSObject,AppKit.NSRuleEditorRowType)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'Foundation.NSRange AppKit.NSSpellChecker::CheckGrammar(System.String,System.IntPtr,System.String,System.Boolean,System.IntPtr,Foundation.NSDictionary[])' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'Foundation.NSRange AppKit.NSSpellChecker::CheckGrammar(System.String,System.IntPtr,System.String,System.Boolean,System.IntPtr,Foundation.NSDictionary[])' is missing an [NullAllowed] on parameter #5 !missing-null-allowed! 'Foundation.NSRange AppKit.NSSpellChecker::CheckSpelling(System.String,System.IntPtr,System.String,System.Boolean,System.IntPtr,System.IntPtr&)' is missing an [NullAllowed] on parameter #2 @@ -931,8 +931,8 @@ !missing-null-allowed! 'System.Boolean AppKit.NSTextAttachmentCell::TrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.Boolean)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean AppKit.NSTextAttachmentCell::TrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr,System.Boolean)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.Boolean AppKit.NSTextAttachmentCell::WantsToTrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Boolean AppKit.NSTextViewDelegate::ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.IntPtr AppKit.NSBrowserDelegate::NextTypeSelectMatch(AppKit.NSBrowser,System.IntPtr,System.IntPtr,System.IntPtr,System.String)' is missing an [NullAllowed] on parameter #4 +!missing-null-allowed! 'System.Boolean AppKit.INSTextViewDelegate::ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.IntPtr AppKit.INSBrowserDelegate::NextTypeSelectMatch(AppKit.NSBrowser,System.IntPtr,System.IntPtr,System.IntPtr,System.String)' is missing an [NullAllowed] on parameter #4 !missing-null-allowed! 'System.IntPtr AppKit.NSSpellChecker::RequestChecking(System.String,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,System.IntPtr,System.Action`4)' is missing an [NullAllowed] on parameter #5 !missing-null-allowed! 'System.String AppKit.NSSpellChecker::GetLanguage(Foundation.NSRange,System.String,Foundation.NSOrthography)' is missing an [NullAllowed] on parameter #2 !missing-null-allowed! 'System.String[] AppKit.NSSpellChecker::CompletionsForPartialWordRange(Foundation.NSRange,System.String,System.String,System.IntPtr)' is missing an [NullAllowed] on parameter #2 @@ -1523,3 +1523,23 @@ !unknown-selector! NSViewAnimation::animations not found !unknown-selector! NSViewAnimation::animator not found !unknown-selector! NSViewAnimation::setAnimations: not found +!extra-null-allowed! 'System.Void AppKit.INSAccessibilityTable::set_AccessibilitySelectedRows(AppKit.INSAccessibilityRow[])' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'AppKit.INSAccessibilityRow[] AppKit.INSAccessibilityTable::get_AccessibilityVisibleRows()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AppKit.NSWindow AppKit.INSDraggingInfo::get_DraggingDestinationWindow()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSArray AppKit.INSTextFinderClient::GetRects(Foundation.NSRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSDraggingInfo::get_DraggingSource()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject AppKit.INSPasteboardWriting::GetPasteboardPropertyListForType(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilityColumnHeaderUIElements()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilityColumns()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilityRowHeaderUIElements()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilitySelectedCells()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilitySelectedColumns()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilityVisibleCells()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSObject[] AppKit.INSAccessibilityTable::get_AccessibilityVisibleColumns()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSString AppKit.INSTextContent::GetContentType()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void AppKit.INSAccessibility::set_AccessibilityAttributedUserInputLabels(Foundation.NSAttributedString[])' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSAccessibility::set_AccessibilityUserInputLabels(System.String[])' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSDraggingInfo::EnumerateDraggingItems(AppKit.NSDraggingItemEnumerationOptions,AppKit.NSView,System.IntPtr,Foundation.NSDictionary,AppKit.NSDraggingEnumerator)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void AppKit.INSTextContent::SetContentType(Foundation.NSString)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSTextElementProvider::Synchronize(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void AppKit.INSUserInterfaceItemIdentification::set_Identifier(System.String)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.ignore index e3136af265a..0d48516fd54 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.ignore @@ -27,3 +27,7 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! +ASWebAuthenticationSessionWebBrowserSessionManager::registerDefaultsForASWASInSetupAssistantIfNeeded not found +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest::get_ClientData()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'AuthenticationServices.ASPublicKeyCredentialClientData AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest::get_ClientData()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-BackgroundAssets.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-BackgroundAssets.ignore new file mode 100644 index 00000000000..a8e301d328a --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-BackgroundAssets.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'System.Void BackgroundAssets.IBADownloaderExtension::DidReceiveChallenge(BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ClassKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ClassKit.ignore index 569d612c56b..832115a071e 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ClassKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ClassKit.ignore @@ -6,3 +6,4 @@ !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::FindContextsMatching(Foundation.NSPredicate,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::FindContextsMatching(System.String[],System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 !missing-null-allowed! 'System.Void ClassKit.CLSDataStore::Save(System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 +!missing-null-allowed! 'System.Void ClassKit.ICLSContextProvider::UpdateDescendants(ClassKit.CLSContext,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreImage.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreImage.ignore index 7c3d862a716..4ce6cad0b4d 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreImage.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreImage.ignore @@ -7,3 +7,7 @@ !missing-selector! CIFilter::apply: not bound !missing-selector! CIFilter::isEnabled not bound !missing-selector! CIFilter::setEnabled: not bound +!extra-null-allowed! 'System.Void CoreImage.ICIBlurredRectangleGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIColorAbsoluteDifferenceProtocol::set_Image2(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIDistanceGradientFromRedMaskProtocol::set_InputImage(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore index da88c2223c6..9f8e170c901 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore @@ -11,3 +11,5 @@ ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! +FSBlockDeviceResource::proxyResourceForBSDName: not found !unknown-selector! +FSBlockDeviceResource::proxyResourceForBSDName:isWritable: not found +!extra-null-allowed! 'FSKit.FSFileName[] FSKit.IFSVolumeXattrOperations::GetSupportedXattrNames(FSKit.FSItem)' has a extraneous [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress FSKit.IFSManageableResourceMaintenanceOperations::StartCheckWithTask(FSKit.FSTask,FSKit.FSTaskOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.ignore index 3772ecd4f4e..8d0570414d3 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.ignore @@ -32,3 +32,12 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! NSFileProviderManager::checkDomainsCanBeStored:onVolumeAtURL:unsupportedReason:error: not found +!extra-null-allowed! 'FileProvider.NSFileProviderItemVersion FileProvider.INSFileProviderItem::get_ItemVersion()' has a extraneous [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderCustomAction::PerformAction(System.String,System.String[],System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderReplicatedExtension::DeleteItem(System.String,FileProvider.NSFileProviderItemVersion,FileProvider.NSFileProviderDeleteItemOptions,FileProvider.NSFileProviderRequest,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderReplicatedExtension::GetItem(System.String,FileProvider.NSFileProviderRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderReplicatedExtension::GetItem(System.String,FileProvider.NSFileProviderRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderServicing::GetSupportedServiceSources(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderServicing::GetSupportedServiceSources(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSProgress FileProvider.INSFileProviderThumbnailing::FetchThumbnails(System.String[],CoreGraphics.CGSize,FileProvider.NSFileProviderPerThumbnailCompletionHandler,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void FileProvider.INSFileProviderEnumerator::CurrentSyncAnchor(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.ignore index f3e7bd07dd0..6641a9a82ca 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.ignore @@ -560,7 +560,7 @@ !missing-null-allowed! 'System.Void Foundation.NSFileManager::GetFileProviderServices(Foundation.NSUrl,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileManager::GetFileProviderServices(Foundation.NSUrl,System.Action`2,Foundation.NSError>)' is missing a '?' on parameter 'completionHandler' block parameter #1 !missing-null-allowed! 'System.Void Foundation.NSFileManager::UnmountVolume(Foundation.NSUrl,Foundation.NSFileManagerUnmountOptions,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 -!missing-null-allowed! 'System.Void Foundation.NSFilePresenter::AccommodatePresentedItemEviction(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSFilePresenter::AccommodatePresentedItemEviction(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileProviderService::GetFileProviderConnection(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void Foundation.NSFileProviderService::GetFileProviderConnection(System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 @@ -571,3 +571,18 @@ !unknown-selector! NSInputStream::_setCFClientFlags:callback:context: not found !unknown-selector! NSProgress::acknowledgeWithSuccess: not found !unknown-selector! NSProgress::setAcknowledgementHandler:forAppBundleIdentifier: not found +!missing-null-allowed! 'Foundation.NSCachedUrlResponse Foundation.INSUrlConnectionDataDelegate::WillCacheResponse(Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSInputStream Foundation.INSUrlConnectionDataDelegate::NeedNewBodyStream(Foundation.NSUrlConnection,Foundation.NSUrlRequest)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlDownloadDelegate::WillSendRequest(Foundation.NSUrlDownload,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlDownloadDelegate::WillSendRequest(Foundation.NSUrlDownload,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDataDelegate::WillCacheResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidBecomeInvalid(Foundation.NSUrlSession,Foundation.NSError)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.ignore index f3e85b19f5e..043f64682bf 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.ignore @@ -1,2 +1,3 @@ # This requires binding the HIDDriverKit framework, which we haven't done !missing-selector! +GCController::supportsHIDDevice: not bound +!deprecated-attribute-missing! GCDevice::physicalInputProfile missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameplayKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameplayKit.ignore new file mode 100644 index 00000000000..79c664559ac --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameplayKit.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'GameplayKit.IGKGameModelUpdate GameplayKit.IGKStrategist::GetBestMoveForActivePlayer()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MailKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MailKit.ignore index 976a820f3a8..a8aff5a39d9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MailKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MailKit.ignore @@ -1,3 +1,6 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void MailKit.MEExtensionManager::ReloadContentBlocker(System.String,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void MailKit.MEExtensionManager::ReloadVisibleMessages(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void MailKit.IMEComposeSessionHandler::AllowMessageSend(MailKit.MEComposeSession,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void MailKit.IMEMessageActionHandler::DecideAction(MailKit.MEMessage,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void MailKit.IMEMessageSecurityHandler::SetPrimaryActionClicked(Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore index 5e8cce5aec7..417d026b784 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore @@ -15,3 +15,70 @@ !unknown-selector! MTLLinkedFunctions::setMotionTransformBuffer: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformBufferOffset: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformCount: not found +!deprecated-attribute-missing! MTLBlitCommandEncoder::getTextureAccessCounters:region:mipLevel:slice:resetCounters:countersBuffer:countersBufferOffset: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBlitCommandEncoder::resetTextureAccessCounters:region:mipLevel:slice: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::areBarycentricCoordsSupported missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::newLibraryWithFile:error: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::supportsFeatureSet: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFunction::newArgumentEncoderWithBufferIndex:reflection: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeap: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeaps:count: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResource:usage: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResources:count:usage: missing a [Deprecated] attribute +!missing-null-allowed! 'Foundation.NSError Metal.IMTLCommandBuffer::get_Error()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLAccelerationStructureCommandEncoder Metal.IMTLCommandBuffer::CreateAccelerationStructureCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::CreateBlitCommandEncoder(Metal.MTLBlitPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::get_BlitCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBuffer Metal.IMTLDevice::CreateBufferNoCopy(System.IntPtr,System.UIntPtr,Metal.MTLResourceOptions,Metal.MTLDeallocator)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::CreateComputeCommandEncoder(Metal.MTLComputePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::get_ComputeCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLComputePipelineState::CreateComputePipelineState(Metal.IMTLFunction[],Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.MTLComputePipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFence Metal.IMTLDevice::CreateFence()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunction Metal.IMTLLibrary::CreateFunction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunctionHandle Metal.IMTLComputePipelineState::CreateFunctionHandle(Metal.IMTLFunction)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLIntersectionFunctionTable Metal.IMTLComputePipelineState::CreateIntersectionFunctionTable(Metal.MTLIntersectionFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateDefaultLibrary()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(CoreFoundation.DispatchData,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderCommandEncoder Metal.IMTLCommandBuffer::CreateRenderCommandEncoder(Metal.MTLRenderPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLResourceStateCommandEncoder Metal.IMTLCommandBuffer::CreateResourceStateCommandEncoder(Metal.MTLResourceStatePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLVisibleFunctionTable Metal.IMTLComputePipelineState::CreateVisibleFunctionTable(Metal.MTLVisibleFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.MTLVertexAttribute[] Metal.IMTLFunction::get_VertexAttributes()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLDepthStencilState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLRenderPipelineState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLSamplerState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Metal.IMTL4MachineLearningCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTL4RenderCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable,Metal.MTLRenderStages)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLAccelerationStructureCommandEncoder::RefitAccelerationStructure(Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'System.Void Metal.IMTLCommandBuffer::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandEncoder::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandQueue::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,System.Action`2)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetDepthStencilState(Metal.IMTLDepthStencilState)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetObjectBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLResource::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore new file mode 100644 index 00000000000..2e58e541304 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore @@ -0,0 +1,4 @@ +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShaders.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShaders.ignore index 618ff523ceb..fa969d0307a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShaders.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShaders.ignore @@ -15,3 +15,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! MPSCNNKernel::sourceRegionForDestinationSize: not found +!missing-null-allowed! 'System.String MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource::get_Label()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ModelIO.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ModelIO.ignore index 5032dc29901..21e2a115ce8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ModelIO.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ModelIO.ignore @@ -5,3 +5,12 @@ !unknown-selector! MDLAsset::componentConformingToProtocol: not found !unknown-selector! MDLAsset::components not found !unknown-selector! MDLAsset::setComponent:forProtocol: not found +!extra-null-allowed! 'ModelIO.IMDLMeshBufferZone ModelIO.IMDLMeshBuffer::get_Zone()' has a extraneous [NullAllowed] on return type +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::get_Matrix(): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::GetLocalTransform(System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! Foundation.NSData ModelIO.IMDLLightProbeIrradianceDataSource::GetSphericalHarmonicsCoefficients(System.Numerics.Vector3): simd type: vector_float3 +!wrong-simd-missing-marshaldirective! ModelIO.MDLAxisAlignedBoundingBox ModelIO.IMDLLightProbeIrradianceDataSource::get_BoundingBox(): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLLightProbeIrradianceDataSource::set_BoundingBox(ModelIO.MDLAxisAlignedBoundingBox): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::set_Matrix(CoreGraphics.NMatrix4): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4,System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4): simd type: matrix_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PhotosUI.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PhotosUI.ignore index d2cefa57788..7ebbe6c6ff9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PhotosUI.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PhotosUI.ignore @@ -1,2 +1,5 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'Foundation.NSProgress PhotosUI.PHProjectExtensionContext::UpdatedProjectInfo(PhotosUI.PHProjectInfo,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void PhotosUI.IPHContentEditingController::FinishContentEditing(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void PhotosUI.IPHProjectExtensionController::BeginProject(PhotosUI.PHProjectExtensionContext,PhotosUI.PHProjectInfo,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 +!missing-null-allowed! 'System.Void PhotosUI.IPHProjectExtensionController::ResumeProject(PhotosUI.PHProjectExtensionContext,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-QuickLookUI.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-QuickLookUI.ignore new file mode 100644 index 00000000000..cdb9f128dbe --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-QuickLookUI.ignore @@ -0,0 +1,5 @@ +!missing-null-allowed! 'System.Void QuickLookUI.IQLPreviewingController::PreparePreviewOfFile(Foundation.NSUrl,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLookUI.IQLPreviewingController::PreparePreviewOfSearchableItem(System.String,System.String,System.Action`1)' is missing a '?' on parameter 'ItemLoadingHandler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLookUI.IQLPreviewingController::PreparePreviewOfSearchableItem(System.String,System.String,System.Action`1)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void QuickLookUI.IQLPreviewingController::ProvidePreview(QuickLookUI.QLFilePreviewRequest,System.Action`2)' is missing a '?' on parameter 'handler' block parameter #0 +!missing-null-allowed! 'System.Void QuickLookUI.IQLPreviewingController::ProvidePreview(QuickLookUI.QLFilePreviewRequest,System.Action`2)' is missing a '?' on parameter 'handler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-SafariServices.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-SafariServices.ignore index 3f025d92018..1f0c3c742fc 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-SafariServices.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-SafariServices.ignore @@ -28,3 +28,4 @@ !missing-null-allowed! 'System.Void SafariServices.SFSafariWindow::GetActiveTab(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void SafariServices.SFSafariWindow::GetToolbarItem(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void SafariServices.SFSafariWindow::OpenTab(Foundation.NSUrl,System.Boolean,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void SafariServices.ISFSafariExtensionHandling::AdditionalRequestHeaders(Foundation.NSUrl,System.Action`1>)' is missing a '?' on parameter 'completionHandler' block parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVKit.ignore index e664c5d730d..8bda0a4c1b4 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVKit.ignore @@ -1,2 +1,4 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void AVFoundation.AVPlayerItem_AVPlaybackRestrictions::RequestPlaybackRestrictionsAuthorization(AVFoundation.AVPlayerItem,System.Action`2)' is missing a '?' on parameter 'completion' block parameter #1 +!missing-null-allowed! 'System.Void AVKit.IAVPlayerViewControllerAnimationCoordinator::AddCoordinatedAnimations(System.Action,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void AVKit.IAVPlayerViewControllerAnimationCoordinator::AddCoordinatedAnimations(System.Action,System.Action`1)' is missing an [NullAllowed] on parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundAssets.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundAssets.ignore new file mode 100644 index 00000000000..a8e301d328a --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundAssets.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'System.Void BackgroundAssets.IBADownloaderExtension::DidReceiveChallenge(BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.ignore new file mode 100644 index 00000000000..698d08334f0 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.ignore @@ -0,0 +1,3 @@ +!missing-null-allowed! 'System.Void BrowserEngineKit.IBETextInput::SelectTextForEditMenu(CoreGraphics.CGPoint,System.Action`3)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'UIKit.UIView BrowserEngineKit.IBETextInput::get_SelectionContainerViewAboveText()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView BrowserEngineKit.IBETextInput::get_SelectionContainerViewBelowText()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreImage.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreImage.ignore index 704f52f5418..2a05c2087b0 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreImage.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreImage.ignore @@ -1,3 +1,7 @@ ## OSX-only API, rdar #22524785 ## see https://trello.com/c/kpksFWto/6-22524785-coreimage-headers-discrepancies !missing-selector! CIKernel::setROISelector: not bound +!extra-null-allowed! 'System.Void CoreImage.ICIBlurredRectangleGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol::set_Color(CoreImage.CIColor)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIColorAbsoluteDifferenceProtocol::set_Image2(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void CoreImage.ICIDistanceGradientFromRedMaskProtocol::set_InputImage(CoreImage.CIImage)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.ignore index 8abaa7e097e..2fcb1c0834a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.ignore @@ -20,3 +20,16 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! NSInputStream::_setCFClientFlags:callback:context: not found +!missing-null-allowed! 'Foundation.NSCachedUrlResponse Foundation.INSUrlConnectionDataDelegate::WillCacheResponse(Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSInputStream Foundation.INSUrlConnectionDataDelegate::NeedNewBodyStream(Foundation.NSUrlConnection,Foundation.NSUrlRequest)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'Foundation.NSProgress Foundation.INSItemProviderWriting::LoadData(System.String,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'Foundation.NSUrlRequest Foundation.INSUrlConnectionDataDelegate::WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDataDelegate::WillCacheResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidBecomeInvalid(Foundation.NSUrlSession,Foundation.NSError)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Foundation.INSUrlSessionTaskDelegate::WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.ignore new file mode 100644 index 00000000000..73942fe1947 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.ignore @@ -0,0 +1 @@ +!deprecated-attribute-missing! GCDevice::physicalInputProfile missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameplayKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameplayKit.ignore new file mode 100644 index 00000000000..79c664559ac --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameplayKit.ignore @@ -0,0 +1 @@ +!missing-null-allowed! 'GameplayKit.IGKGameModelUpdate GameplayKit.IGKStrategist::GetBestMoveForActivePlayer()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore index e13b134115c..f62a78d8c28 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore @@ -14,3 +14,69 @@ !unknown-selector! MTLLinkedFunctions::setMotionTransformBuffer: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformBufferOffset: not found !unknown-selector! MTLLinkedFunctions::setMotionTransformCount: not found +!deprecated-attribute-missing! MTLBlitCommandEncoder::getTextureAccessCounters:region:mipLevel:slice:resetCounters:countersBuffer:countersBufferOffset: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBlitCommandEncoder::resetTextureAccessCounters:region:mipLevel:slice: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::newLibraryWithFile:error: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::supportsFeatureSet: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFunction::newArgumentEncoderWithBufferIndex:reflection: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeap: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useHeaps:count: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResource:usage: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::useResources:count:usage: missing a [Deprecated] attribute +!missing-null-allowed! 'Foundation.NSError Metal.IMTLCommandBuffer::get_Error()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLAccelerationStructureCommandEncoder Metal.IMTLCommandBuffer::CreateAccelerationStructureCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::CreateBlitCommandEncoder(Metal.MTLBlitPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBlitCommandEncoder Metal.IMTLCommandBuffer::get_BlitCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLBuffer Metal.IMTLDevice::CreateBufferNoCopy(System.IntPtr,System.UIntPtr,Metal.MTLResourceOptions,Metal.MTLDeallocator)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::CreateComputeCommandEncoder(Metal.MTLComputePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputeCommandEncoder Metal.IMTLCommandBuffer::get_ComputeCommandEncoder()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLComputePipelineState::CreateComputePipelineState(Metal.IMTLFunction[],Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.IMTLFunction,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLComputePipelineState Metal.IMTLDevice::CreateComputePipelineState(Metal.MTLComputePipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFence Metal.IMTLDevice::CreateFence()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunction Metal.IMTLLibrary::CreateFunction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLFunctionHandle Metal.IMTLComputePipelineState::CreateFunctionHandle(Metal.IMTLFunction)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLIntersectionFunctionTable Metal.IMTLComputePipelineState::CreateIntersectionFunctionTable(Metal.MTLIntersectionFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateDefaultLibrary()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(CoreFoundation.DispatchData,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'Metal.IMTLLibrary Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderCommandEncoder Metal.IMTLCommandBuffer::CreateRenderCommandEncoder(Metal.MTLRenderPassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLRenderPipelineState Metal.IMTLDevice::CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection&,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLResourceStateCommandEncoder Metal.IMTLCommandBuffer::CreateResourceStateCommandEncoder(Metal.MTLResourceStatePassDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.IMTLVisibleFunctionTable Metal.IMTLComputePipelineState::CreateVisibleFunctionTable(Metal.MTLVisibleFunctionTableDescriptor)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Metal.MTLVertexAttribute[] Metal.IMTLFunction::get_VertexAttributes()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLDepthStencilState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLRenderPipelineState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Metal.IMTLSamplerState::get_Label()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void Metal.IMTL4MachineLearningCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTL4RenderCommandEncoder::SetArgumentTable(Metal.IMTL4ArgumentTable,Metal.MTLRenderStages)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLAccelerationStructureCommandEncoder::RefitAccelerationStructure(Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr)' is missing an [NullAllowed] on parameter #3 +!missing-null-allowed! 'System.Void Metal.IMTLCommandBuffer::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandEncoder::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLCommandQueue::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLComputeCommandEncoder::SetTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLDevice::CreateLibrary(System.String,Metal.MTLCompileOptions,System.Action`2)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(Metal.MTLFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action`2)' is missing a '?' on parameter 'completionHandler' block parameter #1 +!missing-null-allowed! 'System.Void Metal.IMTLLibrary::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetDepthStencilState(Metal.IMTLDepthStencilState)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetFragmentTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetObjectBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexSamplerState(Metal.IMTLSamplerState,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLRenderCommandEncoder::SetVertexTexture(Metal.IMTLTexture,System.UIntPtr)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void Metal.IMTLResource::set_Label(System.String)' is missing an [NullAllowed] on parameter #0 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore new file mode 100644 index 00000000000..2e58e541304 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore @@ -0,0 +1,4 @@ +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShaders.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShaders.ignore index 618ff523ceb..fa969d0307a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShaders.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShaders.ignore @@ -15,3 +15,4 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! MPSCNNKernel::sourceRegionForDestinationSize: not found +!missing-null-allowed! 'System.String MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource::get_Label()' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ModelIO.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ModelIO.ignore index 5032dc29901..21e2a115ce8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ModelIO.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ModelIO.ignore @@ -5,3 +5,12 @@ !unknown-selector! MDLAsset::componentConformingToProtocol: not found !unknown-selector! MDLAsset::components not found !unknown-selector! MDLAsset::setComponent:forProtocol: not found +!extra-null-allowed! 'ModelIO.IMDLMeshBufferZone ModelIO.IMDLMeshBuffer::get_Zone()' has a extraneous [NullAllowed] on return type +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::get_Matrix(): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 ModelIO.IMDLTransformComponent::GetLocalTransform(System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! Foundation.NSData ModelIO.IMDLLightProbeIrradianceDataSource::GetSphericalHarmonicsCoefficients(System.Numerics.Vector3): simd type: vector_float3 +!wrong-simd-missing-marshaldirective! ModelIO.MDLAxisAlignedBoundingBox ModelIO.IMDLLightProbeIrradianceDataSource::get_BoundingBox(): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLLightProbeIrradianceDataSource::set_BoundingBox(ModelIO.MDLAxisAlignedBoundingBox): simd type: MDLAxisAlignedBoundingBox +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::set_Matrix(CoreGraphics.NMatrix4): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4,System.Double): simd type: matrix_float4x4 +!wrong-simd-missing-marshaldirective! System.Void ModelIO.IMDLTransformComponent::SetLocalTransform(CoreGraphics.NMatrix4): simd type: matrix_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore index 4f502156c77..7e02335d192 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore @@ -159,14 +159,14 @@ !missing-selector! UITabBarItemAppearance::copy not bound # Initial result from new rule extra-null-allowed -!extra-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type +!extra-null-allowed! 'Foundation.NSIndexPath UIKit.IUICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Name(System.String)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Selector(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIBezierPath::set_CGPath(CoreGraphics.CGPath)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UICollectionReusableView::ApplyLayoutAttributes(UIKit.UICollectionViewLayoutAttributes)' has a extraneous [NullAllowed] on parameter #0 -!extra-null-allowed! 'System.Void UIKit.UIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1 +!extra-null-allowed! 'System.Void UIKit.IUIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::AddBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::RemoveBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UINavigationController::set_ViewControllers(UIKit.UIViewController[])' has a extraneous [NullAllowed] on parameter #0 @@ -179,9 +179,9 @@ # Initial result from new rule missing-null-allowed !missing-null-allowed! 'System.Boolean UIKit.UIScrollView::TouchesShouldBegin(Foundation.NSSet,UIKit.UIEvent,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'System.Double UIKit.UIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Boolean UIKit.IUISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'System.Double UIKit.IUIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityAttributedUserInputLabels(Foundation.NSAttributedString[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityUserInputLabels(System.String[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1 @@ -201,8 +201,8 @@ !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesChanged(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesEnded(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIScene::set_Title(System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.Void UIKit.IUIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UISearchBar::_SetScopeBarButtonTitle(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::.ctor(Foundation.NSArray)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(System.String,System.IntPtr,System.Boolean)' is missing an [NullAllowed] on parameter #0 @@ -212,22 +212,22 @@ !missing-null-allowed! 'System.Void UIKit.UITabBarController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITableViewController::set_TableView(UIKit.UITableView)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITableViewHeaderFooterView::.ctor(Foundation.NSString)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITextView::set_AttributedText(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITextView::set_WeakLinkTextAttributes(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.UIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.IUIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.IUIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIAlertAction UIKit.UIAlertAction::Create(System.String,UIKit.UIAlertActionStyle,System.Action`1)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'UIKit.UIBezierPath UIKit.UICollisionBehavior::GetBoundary(Foundation.NSObject)' is missing an [NullAllowed] on return type @@ -274,38 +274,38 @@ !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_BackItem()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_TopItem()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIPresentationController UIKit.IUIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIResponder UIKit.UIResponder::get_NextResponder()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIScreen UIKit.UIScreen::get_MirroredScreen()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UITextField[] UIKit.UIAlertController::get_TextFields()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UITextInputMode UIKit.UIResponder::get_TextInputMode()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UITextPosition UIKit.UITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UITextRange UIKit.UITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIDynamicAnimator::get_ReferenceView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIGestureRecognizer::get_View()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_ContainerView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_PresentedView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputAccessoryView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputView()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UITouch::get_View()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_TopViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_VisibleViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISearchController::get_SearchResultsController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type @@ -356,7 +356,7 @@ # results from initial block parameter nullability analysis !missing-null-allowed! 'System.Void UIKit.NSTextContentManager::SynchronizeTextLayoutManagers(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIApplication::SetAlternateIconName(System.String,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1)' is missing a '?' on parameter 'reply' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImage::PrepareForDisplay(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImage::PrepareThumbnail(CoreGraphics.CGSize,System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 !missing-null-allowed! 'System.Void UIKit.UIImageReader::GetImage(Foundation.NSData,System.Action`1)' is missing a '?' on parameter 'completion' block parameter #0 @@ -373,3 +373,32 @@ ## the class, managed callback infrastructure, or API Apple removed/privatized - kept for compatibility ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! +UIFocusDebugger::checkFocusGroupTreeForEnvironment: not found +!extra-null-allowed! 'CoreGraphics.CGRect UIKit.IUITextInput::GetCaretRectForPosition(UIKit.UITextPosition)' has a extraneous [NullAllowed] on parameter #0 +!missing-null-allowed! 'Foundation.NSDictionary UIKit.IUITextInput::GetTextStyling(UIKit.UITextPosition,UIKit.UITextStorageDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSIndexPath UIKit.IUIDataSourceModelAssociation::GetIndexPath(System.String,UIKit.UIView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransition(System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransitionInView(UIKit.UIView,System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Boolean UIKit.IUIViewControllerTransitionCoordinator::AnimateAlongsideTransitionInView(UIKit.UIView,System.Action`1,System.Action`1)' is missing an [NullAllowed] on parameter #1 +!missing-null-allowed! 'System.String UIKit.IUIAccessibilityReadingContent::GetAccessibilityContent(System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIAccessibilityReadingContent::GetAccessibilityPageContent()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIDataSourceModelAssociation::GetModelIdentifier(Foundation.NSIndexPath,UIKit.UIView)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIGuidedAccessRestrictionDelegate::GetDetailTextForGuidedAccessRestriction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUIGuidedAccessRestrictionDelegate::GetTextForGuidedAccessRestriction(System.String)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.IUITextInput::TextInRange(UIKit.UITextRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String[] UIKit.IUIGuidedAccessRestrictionDelegate::get_GetGuidedAccessRestrictionIdentifiers()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.Void UIKit.INSTextElementProvider::Synchronize(System.Action`1)' is missing a '?' on parameter 'completionHandler' block parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUIMenuLeaf::set_SelectedImage(UIKit.UIImage)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.IUITextInput::SetMarkedText(System.String,Foundation.NSRange)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetClosestPositionToPoint(CoreGraphics.CGPoint,UIKit.UITextRange)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetClosestPositionToPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextPosition,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextPosition,UIKit.UITextLayoutDirection,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPosition(UIKit.UITextRange,System.IntPtr)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextPosition UIKit.IUITextInput::GetPositionWithinRange(UIKit.UITextRange,UIKit.UITextLayoutDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::get_MarkedTextRange()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetCharacterRangeAtPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UITextRange UIKit.IUITextInput::GetTextRange(UIKit.UITextPosition,UIKit.UITextPosition)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIInteraction::get_View()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.IUIViewControllerTransitionCoordinatorContext::GetTransitionViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.IUIViewControllerTransitionCoordinatorContext::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/u2todo/u2todo.cs b/tests/xtro-sharpie/u2todo/u2todo.cs index 0c5e59be55b..595bec58acd 100644 --- a/tests/xtro-sharpie/u2todo/u2todo.cs +++ b/tests/xtro-sharpie/u2todo/u2todo.cs @@ -5,7 +5,8 @@ class Program { static void Main (string [] args) { - var dir = args.Length == 0 ? "." : args [0]; + var toExtension = (args.Length > 0 && args [0] == "--ignore") ? ".ignore" : ".todo"; + var dir = "."; foreach (var file in Directory.GetFiles (dir, "*.unclassified")) { var last = file.LastIndexOf ('-'); var fx = file.Substring (last + 1, file.Length - last - 14); @@ -14,7 +15,7 @@ static void Main (string [] args) continue; } - var todo = Path.ChangeExtension (file, ".todo"); + var todo = Path.ChangeExtension (file, toExtension); if (File.Exists (todo)) { Console.WriteLine ($"Appending {file} to {todo}"); var content = File.ReadAllText (file); diff --git a/tests/xtro-sharpie/xtro-sharpie/Helpers.cs b/tests/xtro-sharpie/xtro-sharpie/Helpers.cs index 11f62b971db..3038b68fdeb 100644 --- a/tests/xtro-sharpie/xtro-sharpie/Helpers.cs +++ b/tests/xtro-sharpie/xtro-sharpie/Helpers.cs @@ -300,6 +300,13 @@ static bool IsStatic (this TypeDefinition self) } else if (ca.Constructor.DeclaringType.Name == "ProtocolAttribute") { if (ca.HasConstructorArguments) return (ca.ConstructorArguments [0].Value as string); + // [Protocol]'s native name is usually set through the 'Name' property, not a constructor argument + if (ca.HasProperties) { + foreach (var prop in ca.Properties) { + if (prop.Name == "Name" && prop.Argument.Value is string name && !string.IsNullOrEmpty (name)) + return name; + } + } return self.Name; } else if (ca.Constructor.DeclaringType.Name == "NativeNameAttribute") { return (string) ca.ConstructorArguments [0].Value; From f210c567cec01657fa7e1d971621683b90c713ec Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 13:21:16 +0200 Subject: [PATCH 04/10] [registrar] Reject model classes used as generic arguments. Fixes #21256. (#26530) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sharpie already generates protocol interfaces for Objective-C generic arguments, so add regression coverage for the reported typedef scenario on iOS and macOS. Report MT4192 when an exported signature uses a model class as a generic argument, and direct users to the corresponding protocol interface. Add assembly-preparer coverage for both the invalid model class and valid protocol interface forms. Fixes https://github.com/dotnet/macios/issues/21256 🤖 Pull request created by Copilot --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/ObjCRuntime/DynamicRegistrar.cs | 5 ++ src/ObjCRuntime/Registrar.cs | 15 ++++++ tests/assembly-preparer/RegistrarTests.cs | 49 +++++++++++++++++++ tests/assembly-preparer/ReproTest.cs | 2 + ...alyst-MonoVM-interpreter-preservedapis.txt | 3 ++ .../TVOS-MonoVM-interpreter-preservedapis.txt | 3 ++ .../iOS-MonoVM-interpreter-preservedapis.txt | 3 ++ tests/sharpie/Tests/ObjCGenerics.h | 3 ++ tests/sharpie/Tests/ObjCGenerics.iphoneos.cs | 4 ++ tests/sharpie/Tests/ObjCGenerics.macosx.cs | 4 ++ tools/common/StaticRegistrar.cs | 15 +++++- tools/mtouch/Errors.designer.cs | 9 ++++ tools/mtouch/Errors.resx | 4 ++ 13 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 tests/assembly-preparer/RegistrarTests.cs diff --git a/src/ObjCRuntime/DynamicRegistrar.cs b/src/ObjCRuntime/DynamicRegistrar.cs index 3026119c0a0..94b172571d7 100644 --- a/src/ObjCRuntime/DynamicRegistrar.cs +++ b/src/ObjCRuntime/DynamicRegistrar.cs @@ -708,6 +708,11 @@ protected override Type GetGenericTypeDefinition (Type type) return type.GetGenericTypeDefinition (); } + protected override IEnumerable GetGenericArguments (Type type) + { + return type.GetGenericArguments (); + } + protected override bool IsDelegate (Type type) { return type.IsSubclassOf (typeof (System.Delegate)); diff --git a/src/ObjCRuntime/Registrar.cs b/src/ObjCRuntime/Registrar.cs index fc7d13e5b91..f34abcdb556 100644 --- a/src/ObjCRuntime/Registrar.cs +++ b/src/ObjCRuntime/Registrar.cs @@ -1154,6 +1154,7 @@ protected virtual void OnRegisterCategory (ObjCType type, [NotNullIfNotNull (nam protected abstract bool IsAbstract (TType type); protected abstract bool IsPointer (TType type); protected abstract TType GetGenericTypeDefinition (TType type); + protected abstract IEnumerable GetGenericArguments (TType type); public abstract bool VerifyIsConstrainedToNSObject (TType type, out TType? constrained_type); protected abstract TType? GetEnumUnderlyingType (TType type); protected abstract bool TryGetEnumUnderlyingType ([NotNullWhen (true)] TType? tr, [NotNullWhen (true)] out TType? underlyingType); @@ -2779,6 +2780,9 @@ protected string ToSignature (TType type, ObjCMember? member, ref bool success, return "#"; if (IsINativeObject (type)) { + if (IsGenericType (type)) + VerifyGenericArguments (type, member); + if (!IsGenericType (type) && !IsInterface (type) && !IsNSObject (type) && IsAbstract (type)) { ReportWarning (4179, Errors.MT4179, type.FullName, member?.FullName); } @@ -2810,6 +2814,17 @@ protected string ToSignature (TType type, ObjCMember? member, ref bool success, return string.Empty; } + void VerifyGenericArguments (TType type, ObjCMember? member) + { + foreach (var argument in GetGenericArguments (type)) { + if (HasModelAttribute (argument)) + throw CreateException (4192, member, Errors.MT4192, GetTypeFullName (argument), GetTypeFullName (type)); + + if (IsGenericType (argument)) + VerifyGenericArguments (argument, member); + } + } + string ValueTypeSignature (TType type, ObjCMember member) { bool success = true; diff --git a/tests/assembly-preparer/RegistrarTests.cs b/tests/assembly-preparer/RegistrarTests.cs new file mode 100644 index 00000000000..d6a4b2ba5e5 --- /dev/null +++ b/tests/assembly-preparer/RegistrarTests.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +namespace AssemblyPreparerTests; + +public class RegistrarTests : BaseClass { + [Test] + public void ModelClassAsGenericArgument () + { + var code = @" + using Foundation; + using ObjCRuntime; + + class MyClass : NSObject { + [Export (""sessionOptions"")] + public NSDictionary GetSessionOptions () + { + throw new System.NotImplementedException (); + } + } + "; + + using var preparer = CreatePreparer (ApplePlatform.iOS, false, p => p.Registrar = RegistrarMode.ManagedStatic, code, out _); + preparer.Prepare (out _); + + var logger = (TestLogger) preparer.Configuration.Logger; + var exception = logger.Errors.Single (v => v.Code == 4192); + Assert.That (exception.Message, Is.EqualTo ("The registrar cannot use the model class 'Foundation.NSFileManagerDelegate' as a generic type argument in the generic type 'Foundation.NSDictionary`2'. Use the protocol interface instead of the model class.")); + } + + [Test] + public void ProtocolInterfaceAsGenericArgument () + { + var code = @" + using Foundation; + using ObjCRuntime; + + class MyClass : NSObject { + [Export (""sessionOptions"")] + public NSDictionary GetSessionOptions () + { + throw new System.NotImplementedException (); + } + } + "; + + AssertPrepare (ApplePlatform.iOS, false, RegistrarMode.ManagedStatic, code, out _); + } +} diff --git a/tests/assembly-preparer/ReproTest.cs b/tests/assembly-preparer/ReproTest.cs index 3b3c8a8ef30..b1fdaf023b0 100644 --- a/tests/assembly-preparer/ReproTest.cs +++ b/tests/assembly-preparer/ReproTest.cs @@ -202,6 +202,7 @@ AssemblyPreparerInfo GetAssemblyInfo (ITaskItem item) class TestLogger : IToolLog { public int Verbosity => 0; public required ApplePlatform Platform { get; set; } + public List Errors { get; } = []; public void Log (string value) { @@ -220,6 +221,7 @@ public void LogException (Exception ex) public void LogError (ProductException ex) { + Errors.Add (ex); Console.WriteLine (ex.ToString ()); } diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt index 56eecd08aaf..ddde1eb99cc 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt @@ -884,6 +884,7 @@ Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetExportAttribute(System.R Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetExportAttribute(System.Reflection.PropertyInfo) Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetFields(System.Type) Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetFieldType(System.Reflection.FieldInfo) +Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetGenericArguments(System.Type) Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetGenericTypeDefinition(System.Type) Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetGetMethod(System.Reflection.PropertyInfo) Microsoft.MacCatalyst.dll:Registrar.DynamicRegistrar.GetInterfaces(System.Type) @@ -1014,6 +1015,7 @@ Microsoft.MacCatalyst.dll:Registrar.Registrar.GetExportedTypeName(System.Type, F Microsoft.MacCatalyst.dll:Registrar.Registrar.GetExportedTypeName(System.Type) Microsoft.MacCatalyst.dll:Registrar.Registrar.GetFields(System.Type) Microsoft.MacCatalyst.dll:Registrar.Registrar.GetFieldType(System.Reflection.FieldInfo) +Microsoft.MacCatalyst.dll:Registrar.Registrar.GetGenericArguments(System.Type) Microsoft.MacCatalyst.dll:Registrar.Registrar.GetGenericTypeDefinition(System.Type) Microsoft.MacCatalyst.dll:Registrar.Registrar.GetGetMethod(System.Reflection.PropertyInfo) Microsoft.MacCatalyst.dll:Registrar.Registrar.GetInterfaces(System.Type) @@ -1090,6 +1092,7 @@ Microsoft.MacCatalyst.dll:Registrar.Registrar.TryGetAttribute(System.Type, Syste Microsoft.MacCatalyst.dll:Registrar.Registrar.TryGetEnumUnderlyingType(System.Type, out System.Type&) Microsoft.MacCatalyst.dll:Registrar.Registrar.UnlockRegistrar() Microsoft.MacCatalyst.dll:Registrar.Registrar.ValueTypeSignature(System.Type, Registrar.Registrar/ObjCMember, System.Boolean&) +Microsoft.MacCatalyst.dll:Registrar.Registrar.VerifyGenericArguments(System.Type, Registrar.Registrar/ObjCMember) Microsoft.MacCatalyst.dll:Registrar.Registrar.VerifyInSdk(System.Collections.Generic.List`1&, Registrar.Registrar/ObjCMethod) Microsoft.MacCatalyst.dll:Registrar.Registrar.VerifyInSdk(System.Collections.Generic.List`1&, Registrar.Registrar/ObjCProperty) Microsoft.MacCatalyst.dll:Registrar.Registrar.VerifyIsConstrainedToNSObject(System.Collections.Generic.List`1&, System.Type, Registrar.Registrar/ObjCMethod) diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt index cfe222484fa..24be2cdb2e6 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt @@ -879,6 +879,7 @@ Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetExportAttribute(System.Reflecti Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetExportAttribute(System.Reflection.PropertyInfo) Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetFields(System.Type) Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetFieldType(System.Reflection.FieldInfo) +Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetGenericArguments(System.Type) Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetGenericTypeDefinition(System.Type) Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetGetMethod(System.Reflection.PropertyInfo) Microsoft.tvOS.dll:Registrar.DynamicRegistrar.GetInterfaces(System.Type) @@ -1007,6 +1008,7 @@ Microsoft.tvOS.dll:Registrar.Registrar.GetExportedTypeName(System.Type, Foundati Microsoft.tvOS.dll:Registrar.Registrar.GetExportedTypeName(System.Type) Microsoft.tvOS.dll:Registrar.Registrar.GetFields(System.Type) Microsoft.tvOS.dll:Registrar.Registrar.GetFieldType(System.Reflection.FieldInfo) +Microsoft.tvOS.dll:Registrar.Registrar.GetGenericArguments(System.Type) Microsoft.tvOS.dll:Registrar.Registrar.GetGenericTypeDefinition(System.Type) Microsoft.tvOS.dll:Registrar.Registrar.GetGetMethod(System.Reflection.PropertyInfo) Microsoft.tvOS.dll:Registrar.Registrar.GetInterfaces(System.Type) @@ -1083,6 +1085,7 @@ Microsoft.tvOS.dll:Registrar.Registrar.TryGetAttribute(System.Type, System.Strin Microsoft.tvOS.dll:Registrar.Registrar.TryGetEnumUnderlyingType(System.Type, out System.Type&) Microsoft.tvOS.dll:Registrar.Registrar.UnlockRegistrar() Microsoft.tvOS.dll:Registrar.Registrar.ValueTypeSignature(System.Type, Registrar.Registrar/ObjCMember, System.Boolean&) +Microsoft.tvOS.dll:Registrar.Registrar.VerifyGenericArguments(System.Type, Registrar.Registrar/ObjCMember) Microsoft.tvOS.dll:Registrar.Registrar.VerifyInSdk(System.Collections.Generic.List`1&, Registrar.Registrar/ObjCMethod) Microsoft.tvOS.dll:Registrar.Registrar.VerifyInSdk(System.Collections.Generic.List`1&, Registrar.Registrar/ObjCProperty) Microsoft.tvOS.dll:Registrar.Registrar.VerifyIsConstrainedToNSObject(System.Collections.Generic.List`1&, System.Type, Registrar.Registrar/ObjCMethod) diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt index 07f5b2ebb5c..a699bf80a05 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt @@ -879,6 +879,7 @@ Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetExportAttribute(System.Reflectio Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetExportAttribute(System.Reflection.PropertyInfo) Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetFields(System.Type) Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetFieldType(System.Reflection.FieldInfo) +Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetGenericArguments(System.Type) Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetGenericTypeDefinition(System.Type) Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetGetMethod(System.Reflection.PropertyInfo) Microsoft.iOS.dll:Registrar.DynamicRegistrar.GetInterfaces(System.Type) @@ -1007,6 +1008,7 @@ Microsoft.iOS.dll:Registrar.Registrar.GetExportedTypeName(System.Type, Foundatio Microsoft.iOS.dll:Registrar.Registrar.GetExportedTypeName(System.Type) Microsoft.iOS.dll:Registrar.Registrar.GetFields(System.Type) Microsoft.iOS.dll:Registrar.Registrar.GetFieldType(System.Reflection.FieldInfo) +Microsoft.iOS.dll:Registrar.Registrar.GetGenericArguments(System.Type) Microsoft.iOS.dll:Registrar.Registrar.GetGenericTypeDefinition(System.Type) Microsoft.iOS.dll:Registrar.Registrar.GetGetMethod(System.Reflection.PropertyInfo) Microsoft.iOS.dll:Registrar.Registrar.GetInterfaces(System.Type) @@ -1083,6 +1085,7 @@ Microsoft.iOS.dll:Registrar.Registrar.TryGetAttribute(System.Type, System.String Microsoft.iOS.dll:Registrar.Registrar.TryGetEnumUnderlyingType(System.Type, out System.Type&) Microsoft.iOS.dll:Registrar.Registrar.UnlockRegistrar() Microsoft.iOS.dll:Registrar.Registrar.ValueTypeSignature(System.Type, Registrar.Registrar/ObjCMember, System.Boolean&) +Microsoft.iOS.dll:Registrar.Registrar.VerifyGenericArguments(System.Type, Registrar.Registrar/ObjCMember) Microsoft.iOS.dll:Registrar.Registrar.VerifyInSdk(System.Collections.Generic.List`1&, Registrar.Registrar/ObjCMethod) Microsoft.iOS.dll:Registrar.Registrar.VerifyInSdk(System.Collections.Generic.List`1&, Registrar.Registrar/ObjCProperty) Microsoft.iOS.dll:Registrar.Registrar.VerifyIsConstrainedToNSObject(System.Collections.Generic.List`1&, System.Type, Registrar.Registrar/ObjCMethod) diff --git a/tests/sharpie/Tests/ObjCGenerics.h b/tests/sharpie/Tests/ObjCGenerics.h index 39ae04d5e87..367d701c1b7 100644 --- a/tests/sharpie/Tests/ObjCGenerics.h +++ b/tests/sharpie/Tests/ObjCGenerics.h @@ -23,7 +23,10 @@ @protocol B @end +typedef NSDictionary *> GCKSessionOptions; + @interface GenericTypesTest +@property(nonatomic, strong, readonly, nullable) GCKSessionOptions *sessionOptions; -(NSDictionary *)NSDictionaryOfNSStringToNSNumber; -(NSDictionary, NSString *> *)NSDictionaryOfNSObjectConformingToAANDBToNSString; -(NSArray *)NSArrayOfNSString; diff --git a/tests/sharpie/Tests/ObjCGenerics.iphoneos.cs b/tests/sharpie/Tests/ObjCGenerics.iphoneos.cs index 63e04210532..dd01b871f6b 100644 --- a/tests/sharpie/Tests/ObjCGenerics.iphoneos.cs +++ b/tests/sharpie/Tests/ObjCGenerics.iphoneos.cs @@ -48,6 +48,10 @@ interface B { // @interface GenericTypesTest interface GenericTypesTest { + // @property (readonly, nonatomic, strong) GCKSessionOptions * _Nullable sessionOptions; + [NullAllowed, Export ("sessionOptions", ArgumentSemantic.Strong)] + NSDictionary SessionOptions { get; } + // -(NSDictionary *)NSDictionaryOfNSStringToNSNumber; [Export ("NSDictionaryOfNSStringToNSNumber")] [Verify (MethodToProperty)] diff --git a/tests/sharpie/Tests/ObjCGenerics.macosx.cs b/tests/sharpie/Tests/ObjCGenerics.macosx.cs index 63e04210532..dd01b871f6b 100644 --- a/tests/sharpie/Tests/ObjCGenerics.macosx.cs +++ b/tests/sharpie/Tests/ObjCGenerics.macosx.cs @@ -48,6 +48,10 @@ interface B { // @interface GenericTypesTest interface GenericTypesTest { + // @property (readonly, nonatomic, strong) GCKSessionOptions * _Nullable sessionOptions; + [NullAllowed, Export ("sessionOptions", ArgumentSemantic.Strong)] + NSDictionary SessionOptions { get; } + // -(NSDictionary *)NSDictionaryOfNSStringToNSNumber; [Export ("NSDictionaryOfNSStringToNSNumber")] [Verify (MethodToProperty)] diff --git a/tools/common/StaticRegistrar.cs b/tools/common/StaticRegistrar.cs index d95a683f036..be6a84f1cdc 100644 --- a/tools/common/StaticRegistrar.cs +++ b/tools/common/StaticRegistrar.cs @@ -1179,6 +1179,13 @@ protected override TypeReference GetGenericTypeDefinition (TypeReference type) return type; } + protected override IEnumerable GetGenericArguments (TypeReference type) + { + if (type is GenericInstanceType git) + return git.GenericArguments; + return []; + } + protected override bool AreEqual (TypeReference? a, TypeReference? b) { if (a == b) @@ -1335,7 +1342,13 @@ protected override void GetNamespaceAndName (TypeReference type, out string @nam protected override bool TryGetAttribute (TypeReference type, string attributeNamespace, string attributeType, [NotNullWhen (true)] out object? attribute) { - bool res = TryGetAttribute (type.Resolve (), attributeNamespace, attributeType, out var attrib); + var resolvedType = type.Resolve (); + if (resolvedType is null) { + attribute = null; + return false; + } + + bool res = TryGetAttribute (resolvedType, attributeNamespace, attributeType, out var attrib); attribute = attrib; return res; } diff --git a/tools/mtouch/Errors.designer.cs b/tools/mtouch/Errors.designer.cs index 65858c29af0..8201fdecc51 100644 --- a/tools/mtouch/Errors.designer.cs +++ b/tools/mtouch/Errors.designer.cs @@ -2676,6 +2676,15 @@ public static string MT4190 { } } + /// + /// Looks up a localized string similar to The registrar cannot use the model class '{0}' as a generic type argument in the generic type '{1}'. Use the protocol interface instead of the model class.. + /// + public static string MT4192 { + get { + return ResourceManager.GetString("MT4192", resourceCulture); + } + } + /// /// Looks up a localized string similar to Missing '{0}' compiler. Please install Xcode 'Command-Line Tools' component. /// diff --git a/tools/mtouch/Errors.resx b/tools/mtouch/Errors.resx index b25ab909b93..9ce37f3745c 100644 --- a/tools/mtouch/Errors.resx +++ b/tools/mtouch/Errors.resx @@ -1640,6 +1640,10 @@ Could not find the trampoline for the category method {0}. + + The registrar cannot use the model class '{0}' as a generic type argument in the generic type '{1}'. Use the protocol interface instead of the model class. + + Missing '{0}' compiler. Please install Xcode 'Command-Line Tools' component From 0e5c02d81b7afc34d052f77c04a00f655cea0df4 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 17:37:19 +0200 Subject: [PATCH 05/10] [tests] Test in-proc crash reports on macOS. Fixes #23864. (#26561) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a macOS arm64 variation to EnableCrashReportTest now that the desktop runtime supports JSON crash reports through createdump. The existing test verifies both an explicitly configured crash report directory and the default per-application caches directory. Fixes https://github.com/dotnet/macios/issues/23864 🤖 Pull request created by Copilot --- docs/building-apps/build-properties.md | 9 +++------ tests/dotnet/UnitTests/EnableCrashReportTest.cs | 5 +---- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/building-apps/build-properties.md b/docs/building-apps/build-properties.md index e4c32038f6c..6089dc2ed05 100644 --- a/docs/building-apps/build-properties.md +++ b/docs/building-apps/build-properties.md @@ -167,8 +167,9 @@ This can be overriden by setting the `BundleCreateDump` property: Note: the `createdump` tool does currently not work for sandboxed apps ([#18961](https://github.com/dotnet/macios/issues/18961)); -Only applicable to projects that use the CoreCLR runtime (which, at the moment -of this writing, is only macOS projects). +Note: an alternative option is to enable the in-process crash reporter (see [EnableCrashReport](#enablecrashreport)). The in-process crash reporter also works for sandboxed apps. + +Only applicable to macOS projects. [createdump]: https://github.com/dotnet/runtime/blob/3b63eb1346f1ddbc921374a5108d025662fb5ffd/docs/design/coreclr/botr/xplat-minidump-generation.md @@ -599,10 +600,6 @@ The crash reports are written to a subdirectory of the app's caches directory. See also: [Collect crash dumps](https://learn.microsoft.com/en-us/dotnet/core/diagnostics/collect-dumps-crash). -The in-process crash reporter is only available in the mobile CoreCLR runtime -(iOS, tvOS and Mac Catalyst); the desktop macOS runtime relies on the -[`createdump`](#bundlecreatedump) tool instead. - ## EnableDefaultCodesignEntitlements See [CodesignEntitlements](#codesignentitlements). diff --git a/tests/dotnet/UnitTests/EnableCrashReportTest.cs b/tests/dotnet/UnitTests/EnableCrashReportTest.cs index 4f7198c0a4e..94aad8d8975 100644 --- a/tests/dotnet/UnitTests/EnableCrashReportTest.cs +++ b/tests/dotnet/UnitTests/EnableCrashReportTest.cs @@ -8,16 +8,13 @@ namespace Xamarin.Tests { public class EnableCrashReportTest : TestBaseClass { [Test] [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")] + [TestCase (ApplePlatform.MacOSX, "osx-arm64")] public void Enabled (ApplePlatform platform, string runtimeIdentifiers) { // When $(EnableCrashReport) is set to true, the DOTNET_EnableCrashReport=1 environment // variable is set at startup, which makes the .NET runtime's in-process crash reporter // write a JSON crash report when the app crashes. Verify this by crashing the app on // launch and checking that a crash report file was created. - // - // Note: only the mobile CoreCLR flavor (iOS, tvOS and Mac Catalyst) has the in-process - // crash reporter; the desktop macOS runtime relies on 'createdump' instead (see the - // BundleCreateDump property), which is why macOS isn't tested here. var project = "MySimpleApp"; Configuration.IgnoreIfIgnoredPlatform (platform); Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); From 063ceeeeb18bdef8338122c08bd2ba99cbb2d557 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 17:37:29 +0200 Subject: [PATCH 06/10] [AppKit] Document ten enum types (#26557) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Document ten AppKit enum types and their members, replacing placeholder documentation with useful summaries. Remove the corresponding entries from the Cecil documentation known-failures list. 🤖 Pull request created by Copilot --- src/AppKit/Enums.cs | 78 +++++++++++-------- .../Documentation.KnownFailures.txt | 10 --- 2 files changed, 44 insertions(+), 44 deletions(-) diff --git a/src/AppKit/Enums.cs b/src/AppKit/Enums.cs index 2d587ec5f32..fb998d3d2dd 100644 --- a/src/AppKit/Enums.cs +++ b/src/AppKit/Enums.cs @@ -27,14 +27,15 @@ namespace AppKit { + /// Specifies a return response from an application modal session. [NoMacCatalyst] [Native] public enum NSRunResponse : long { - /// To be added. + /// Indicates that the modal session stopped. Stopped = -1000, - /// To be added. + /// Indicates that the modal session was aborted. Aborted = -1001, - /// To be added. + /// Indicates that the modal session should continue. Continues = -1002, } @@ -340,16 +341,17 @@ public enum NSColorSpaceModel : long { #endregion #region NSParagraphStyle + /// Specifies the alignment of text at a tab stop. [NoMacCatalyst] [Native] public enum NSTextTabType : ulong { - /// To be added. + /// Left-aligns text at the tab stop. Left, - /// To be added. + /// Right-aligns text at the tab stop. Right, - /// To be added. + /// Centers text at the tab stop. Center, - /// To be added. + /// Aligns decimal characters at the tab stop. Decimal, } @@ -1429,24 +1431,26 @@ public enum NSWindowCollectionBehavior : ulong { CanJoinAllApplications = 1 << 18, } + /// Specifies which windows to include in a window-number list. [NoMacCatalyst] [Flags] [Native] public enum NSWindowNumberListOptions : ulong { - /// To be added. + /// Includes windows from all applications, instead of only the calling application. AllApplication = 1 << 0, - /// To be added. + /// Includes windows from all spaces, instead of only the active space. AllSpaces = 1 << 4, } + /// Specifies the direction in which a window traverses its key-view loop. [NoMacCatalyst] [Native] public enum NSSelectionDirection : ulong { - /// To be added. + /// Indicates that the window is not traversing the key-view loop. Direct = 0, - /// To be added. + /// Proceeds to the next valid key view. Next, - /// To be added. + /// Proceeds to the previous valid key view. Previous, } @@ -2627,14 +2631,15 @@ public enum NSTableViewColumnAutoresizingStyle : ulong { FirstColumnOnly, } + /// Specifies how a table view highlights selected rows. [NoMacCatalyst] [Native] public enum NSTableViewSelectionHighlightStyle : long { - /// To be added. + /// Does not highlight selected rows. None = -1, - /// To be added. + /// Uses the regular selection highlight style. Regular = 0, - /// To be added. + /// Uses the source-list selection highlight style. [Deprecated (PlatformName.MacOSX, 11, 0, message: "Set 'NSTableView.Style' to 'NSTableViewStyle.SourceList' instead.")] SourceList = 1, } @@ -2674,17 +2679,18 @@ public enum NSTableColumnResizing : long { UserResizingMask = (1 << 1), } + /// Specifies which grid lines a table view draws. [NoMacCatalyst] [Flags] [Native] public enum NSTableViewGridStyle : ulong { - /// To be added. + /// Does not draw grid lines. None = 0, - /// To be added. + /// Draws solid vertical grid lines. SolidVerticalLine = 1 << 0, - /// To be added. + /// Draws solid horizontal grid lines. SolidHorizontalLine = 1 << 1, - /// To be added. + /// Draws dashed horizontal grid lines. DashedHorizontalGridLine = 1 << 3, } @@ -2724,40 +2730,43 @@ public enum NSImageAlignment : ulong { Right, } + /// Specifies the frame drawn around an image. [NoMacCatalyst] [Native] public enum NSImageFrameStyle : ulong { - /// To be added. + /// Draws no frame. None = 0, - /// To be added. + /// Draws a frame suitable for a photograph. Photo, - /// To be added. + /// Draws a gray bezel frame. GrayBezel, - /// To be added. + /// Draws a grooved frame. Groove, - /// To be added. + /// Draws a button-style frame. Button, } + /// Specifies when a speech synthesizer pauses or stops speaking. [NoMacCatalyst] [Native] public enum NSSpeechBoundary : ulong { - /// To be added. + /// Pauses or stops speaking immediately. Immediate = 0, - /// To be added. + /// Pauses or stops speaking at the next word boundary. Word = 1, - /// To be added. + /// Pauses or stops speaking at the next sentence boundary. Sentence, } + /// Specifies the visual style of a split view divider. [NoMacCatalyst] [Native] public enum NSSplitViewDividerStyle : long { - /// To be added. + /// Uses a thick divider. Thick = 1, - /// To be added. + /// Uses a thin divider. Thin = 2, - /// To be added. + /// Uses a pane-splitter divider. PaneSplitter = 3, } @@ -2773,16 +2782,17 @@ public enum NSSplitViewItemBehavior : long { Inspector, } + /// Specifies how an image is scaled to fit its frame. [NoMacCatalyst] [Native] public enum NSImageScaling : ulong { - /// To be added. + /// Scales the image down proportionally when it is larger than the frame. ProportionallyDown = 0, - /// To be added. + /// Scales the image independently along each axis to fill the frame. AxesIndependently, - /// To be added. + /// Does not scale the image. None, - /// To be added. + /// Scales the image proportionally up or down to fit the frame. ProportionallyUpOrDown, } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 407168e335c..a45e895207f 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -22499,7 +22499,6 @@ T:AppKit.NSHorizontalDirections T:AppKit.NSImageAlignment T:AppKit.NSImageCacheMode T:AppKit.NSImageDynamicRange -T:AppKit.NSImageFrameStyle T:AppKit.NSImageHint T:AppKit.NSImageInterpolation T:AppKit.NSImageLayoutDirection @@ -22509,7 +22508,6 @@ T:AppKit.NSImageRect T:AppKit.NSImageRepLoadStatus T:AppKit.NSImageResizingModeExtensions T:AppKit.NSImageScale -T:AppKit.NSImageScaling T:AppKit.NSImageSymbolColorRenderingMode T:AppKit.NSImageSymbolScale T:AppKit.NSImageSymbolVariableValueMode @@ -22586,7 +22584,6 @@ T:AppKit.NSRulerEditorDisplayValue T:AppKit.NSRulerEditorPredicateParts T:AppKit.NSRulerMarkerClientViewDelegation T:AppKit.NSRulerViewUnits -T:AppKit.NSRunResponse T:AppKit.NSSaveOperationType T:AppKit.NSSavePanelComplete T:AppKit.NSScrollArrowPosition @@ -22602,7 +22599,6 @@ T:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell T:AppKit.NSSegmentDistribution T:AppKit.NSSegmentStyle T:AppKit.NSSegmentSwitchTracking -T:AppKit.NSSelectionDirection T:AppKit.NSSharingCollaborationMode T:AppKit.NSSharingContentScope T:AppKit.NSSharingServiceAnchoringViewForSharingService @@ -22615,10 +22611,8 @@ T:AppKit.NSSharingServiceSourceFrameOnScreenForShareItem T:AppKit.NSSharingServiceSourceWindowForShareItems T:AppKit.NSSharingServiceTransitionImageForShareItem T:AppKit.NSSliderType -T:AppKit.NSSpeechBoundary T:AppKit.NSSpellCheckerShowCorrectionIndicatorOfTypeHandler T:AppKit.NSSpellingState -T:AppKit.NSSplitViewDividerStyle T:AppKit.NSSplitViewItemBehavior T:AppKit.NSSpringLoadingHighlight T:AppKit.NSSpringLoadingOptions @@ -22648,7 +22642,6 @@ T:AppKit.NSTableViewDiffableDataSourceRowProvider T:AppKit.NSTableViewDiffableDataSourceSectionHeaderViewProvider T:AppKit.NSTableViewDraggingDestinationFeedbackStyle T:AppKit.NSTableViewEventString -T:AppKit.NSTableViewGridStyle T:AppKit.NSTableViewIndexFilter T:AppKit.NSTableViewPredicate T:AppKit.NSTableViewRowActionsGetter @@ -22659,7 +22652,6 @@ T:AppKit.NSTableViewRowHeight T:AppKit.NSTableViewRowPredicate T:AppKit.NSTableViewRowSizeStyle T:AppKit.NSTableViewSearchString -T:AppKit.NSTableViewSelectionHighlightStyle T:AppKit.NSTableViewSource T:AppKit.NSTableViewStyle T:AppKit.NSTableViewToolTip @@ -22711,7 +22703,6 @@ T:AppKit.NSTextSelectionNavigationDirection T:AppKit.NSTextSelectionNavigationLayoutOrientation T:AppKit.NSTextSelectionNavigationModifier T:AppKit.NSTextSelectionNavigationWritingDirection -T:AppKit.NSTextTabType T:AppKit.NSTextView_SharingService T:AppKit.NSTextViewCellPasteboard T:AppKit.NSTextViewCellPosition @@ -22786,7 +22777,6 @@ T:AppKit.NSWindowFramePredicate T:AppKit.NSWindowLevel T:AppKit.NSWindowMenu T:AppKit.NSWindowNSWindow -T:AppKit.NSWindowNumberListOptions T:AppKit.NSWindowResize T:AppKit.NSWindowSharingType T:AppKit.NSWindowSheetRect From 029a497f983681792275fef607327675710c2d8d Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 17:38:47 +0200 Subject: [PATCH 07/10] [dotnet-linker] Remove DynamicDependency signature workaround. Fixes #26413 (#26560) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes the workaround for https://github.com/dotnet/runtime/issues/131892 (the trimmer crashed with a `NullReferenceException`, surfaced as `error IL1012`, when computing the documentation signature of a method whose parameter type is a nested type from another assembly) now that the trimmer bug is fixed and we've moved to an SDK containing the fix. `[DynamicDependency]` attributes now use precise method signatures (including the parameter list) again, instead of matching by name and generic arity alone, so fewer overloads are unnecessarily preserved. Note: `DocumentationComments.GetNameSignature` and `AddPreserveAllMembersDynamicDependencyAttributes` are intentionally left untouched, since `[Preserve (AllMembers = true)]` preserves every overload anyway, so matching by name there is correct and cheaper. Fixes https://github.com/dotnet/macios/issues/26413 🤖 Pull request created by Copilot --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../PreserveBlockCodeHandlerTests.cs | 5 ++- .../PreserveSmartEnumConversionsTest.cs | 3 +- tools/dotnet-linker/AppBundleRewriter.cs | 36 ++----------------- 3 files changed, 5 insertions(+), 39 deletions(-) diff --git a/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs b/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs index f775a21fc65..ad39cd811c5 100644 --- a/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs +++ b/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs @@ -45,9 +45,8 @@ static internal void Invoke (IntPtr block, int magic_number) Assert.That ((string) attribs [0].ConstructorArguments [1].Value, Is.EqualTo ("ObjCRuntime.Trampolines.SDInnerBlock"), "First attribute's second argument"); Assert.That ((string) attribs [0].ConstructorArguments [2].Value, Is.EqualTo ("Test"), "First attribute's third argument"); - // Invoke method: DDA(string memberSignature) - same declaring type, so simpler constructor. - // The signature doesn't include the parameter list, because there's only one method named 'Invoke'. + // Invoke method: DDA(string memberSignature) - same declaring type, so simpler constructor Assert.That (attribs [1].ConstructorArguments.Count, Is.EqualTo (1), "Second attribute's argument count"); - Assert.That ((string) attribs [1].ConstructorArguments [0].Value, Is.EqualTo ("Invoke"), "Second attribute's first argument"); + Assert.That ((string) attribs [1].ConstructorArguments [0].Value, Is.EqualTo ("Invoke(System.IntPtr,System.Int32)"), "Second attribute's first argument"); } } diff --git a/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs b/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs index 8fe86714feb..95f90cee942 100644 --- a/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs +++ b/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs @@ -108,8 +108,7 @@ void AssertHasDynamicDependency (ICustomAttributeProvider provider, string membe void AssertMethodHasDynamicDependencies (ICustomAttributeProvider provider) { - // 'GetConstant' has no parameter list, because it's the only method with that name (unlike 'GetValue'). - AssertHasDynamicDependency (provider, "GetConstant", "CoreAnimation.CAToneMapModeExtensions", $"Microsoft.{platform.AsString ()}"); + AssertHasDynamicDependency (provider, "GetConstant(CoreAnimation.CAToneMapMode)", "CoreAnimation.CAToneMapModeExtensions", $"Microsoft.{platform.AsString ()}"); AssertHasDynamicDependency (provider, "GetValue(Foundation.NSString)", "CoreAnimation.CAToneMapModeExtensions", $"Microsoft.{platform.AsString ()}"); } diff --git a/tools/dotnet-linker/AppBundleRewriter.cs b/tools/dotnet-linker/AppBundleRewriter.cs index 62f5c508f3a..d0614410aed 100644 --- a/tools/dotnet-linker/AppBundleRewriter.cs +++ b/tools/dotnet-linker/AppBundleRewriter.cs @@ -1547,44 +1547,12 @@ bool IsAssemblyTrimmed (IMemberDefinition member) return action == AssemblyAction.Link; } - /// - /// Returns the signature to use in a [DynamicDependency] attribute for a method: the - /// method name (and generic arity) if no other method in the same type has that name and - /// arity, otherwise the full signature (including the parameter list). - /// - /// - /// - /// The trimmer only compares the parameter lists when the signature has one, and computing - /// the signature of a parameter crashes the trimmer if the parameter's type is a nested type - /// reference (see ), - /// so use the name alone whenever it's unambiguous. - /// - /// - /// The trimmer matches a signature without a parameter list on both the name and the generic - /// arity, so methods that differ in arity (Foo () vs Foo<T> ()) don't - /// collide and don't need a parameter list either. - /// - /// - static string GetDynamicDependencySignature (MethodDefinition method) - { - var count = 0; - foreach (var candidate in method.DeclaringType.Methods) { - if (candidate.Name != method.Name) - continue; - if (candidate.GenericParameters.Count != method.GenericParameters.Count) - continue; - if (++count > 1) - return DocumentationComments.GetSignature (method); - } - return DocumentationComments.GetNameSignature (method); - } - public bool AddDynamicDependencyAttribute (MethodDefinition addToMethod, MethodDefinition dependsOn) { if (!IsAssemblyTrimmed (dependsOn)) return false; - var signature = GetDynamicDependencySignature (dependsOn); + var signature = DocumentationComments.GetSignature (dependsOn); if (addToMethod.DeclaringType == dependsOn.DeclaringType) { var attribute = CreateDynamicDependencyAttribute (signature); return AddAttributeOnlyOnce (addToMethod, attribute); @@ -1736,7 +1704,7 @@ static bool HasAnyInterfaces (TypeDefinition? type) public bool AddDynamicDependencyAttributeToStaticConstructor (TypeDefinition onType, MethodDefinition forMethod) { CustomAttribute attrib; - var signature = GetDynamicDependencySignature (forMethod); + var signature = DocumentationComments.GetSignature (forMethod); if (onType == forMethod.DeclaringType) { attrib = CreateDynamicDependencyAttribute (signature); From 6d89a719400cbf85c3054bba5dec5a3626eafb5a Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 17:39:27 +0200 Subject: [PATCH 08/10] [tests] Re-enable CoreCLR DotNetWatch tests. Fixes #26470 (#26559) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes the temporary Assert.Ignore that disabled CoreCLR DotNetWatch Hot Reload tests on iOS and Mac Catalyst after the upstream runtime fix for Bad IL range. Fixes https://github.com/dotnet/macios/issues/26470. 🤖 Pull request created by Copilot --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- tests/dotnet/UnitTests/DotNetWatchTest.cs | 24 ----------------------- 1 file changed, 24 deletions(-) diff --git a/tests/dotnet/UnitTests/DotNetWatchTest.cs b/tests/dotnet/UnitTests/DotNetWatchTest.cs index 682c88504f5..9e0daebd8c8 100644 --- a/tests/dotnet/UnitTests/DotNetWatchTest.cs +++ b/tests/dotnet/UnitTests/DotNetWatchTest.cs @@ -55,30 +55,6 @@ void DotNetWatchImpl (ApplePlatform platform, bool useMonoRuntime, bool enableSa { Configuration.IgnoreIfIgnoredPlatform (platform); - // Hot Reload with CoreCLR is currently broken on the mobile platforms: the app crashes with - // "System.BadImageFormatException: Bad IL range" right after the update has been applied. - // Desktop macOS is not affected. - // - // That error comes from CoreCLR's PEAssembly::GetIL, which means the runtime looked up the - // updated method's IL in the *baseline* PE image using the RVA from the metadata delta - and - // that RVA is delta-relative, so it's out of range in the baseline image. In other words the - // runtime didn't pick up the delta IL when compiling the updated method. - // - // This is fallout from https://github.com/dotnet/runtime/pull/130159 ("Use CodeVersioning for - // EnC"), which made the delta IL be stored as an ILCodeVersion: only - // VersionedPrepareCodeConfig::GetILHeader returns it, while the plain - // PrepareCodeConfig::GetILHeader falls back to MethodDesc::GetILHeader (= the baseline RVA - // lookup that ends up throwing). Something on the mobile-only code path prepares the updated - // method with a non-versioned config. The mobile difference isn't code versioning as such - // (that's enabled everywhere, since FEATURE_METADATA_UPDATER turns on FEATURE_CODE_VERSIONING), - // but rather that FEATURE_DYNAMIC_CODE_COMPILED is off for Apple mobile, so there's no JIT and - // these apps run the CoreCLR interpreter instead. - // - // Tracked upstream here: https://github.com/dotnet/runtime/issues/132804 - // Re-enable these test cases once the fix has flowed into our runtime. - if (!useMonoRuntime && platform != ApplePlatform.MacOSX) - Assert.Ignore ("Hot Reload with CoreCLR is currently broken on this platform: https://github.com/dotnet/macios/issues/26470"); - var projectPath = GetProjectPath ("HotReloadTestApp", platform: platform); var projectDirectory = Path.GetDirectoryName (projectPath)!; From 4237a344488a1ab2c7cee633ec9b95fa8e9f7afb Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Fri, 4 Sep 2026 15:53:44 -0400 Subject: [PATCH 09/10] [xtro] Update Xcode 27 baselines after main merge Track newly exposed Xcode 27 deprecations as TODOs and retain documented FSKit and MetalFX exceptions after the protocol-name lookup fix. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: cd1fd6e9-5bf0-492b-90ba-cef0e91b6466 --- .../MacCatalyst-Metal.todo | 6 +++++ .../MacCatalyst-MetalFX.ignore | 5 ++++ .../MacCatalyst-MetalFX.todo | 2 ++ .../api-annotations-dotnet/iOS-Metal.todo | 6 +++++ .../api-annotations-dotnet/iOS-MetalFX.ignore | 5 ++++ .../api-annotations-dotnet/iOS-MetalFX.todo | 2 ++ .../api-annotations-dotnet/macOS-FSKit.ignore | 4 +++- .../api-annotations-dotnet/macOS-Metal.todo | 23 +++++++++++++++++++ .../macOS-MetalFX.ignore | 5 ++++ .../api-annotations-dotnet/macOS-MetalFX.todo | 2 ++ .../api-annotations-dotnet/tvOS-Metal.todo | 6 +++++ .../tvOS-MetalFX.ignore | 5 ++++ .../api-annotations-dotnet/tvOS-MetalFX.todo | 2 ++ 13 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.todo diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.todo new file mode 100644 index 00000000000..b097495e810 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Metal.todo @@ -0,0 +1,6 @@ +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore index 2e58e541304..c0372caded7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.ignore @@ -2,3 +2,8 @@ !wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +## The accessors declare MarshalDirective metadata; the diagnostic is emitted for generated protocol-interface members. +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.todo new file mode 100644 index 00000000000..173a647f800 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-MetalFX.todo @@ -0,0 +1,2 @@ +!deprecated-attribute-missing! MTLFXTemporalDenoisedScalerBase::reactiveTextureUsage missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFXTemporalScalerBase::reactiveTextureUsage missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo new file mode 100644 index 00000000000..b097495e810 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo @@ -0,0 +1,6 @@ +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore index 2e58e541304..c0372caded7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore @@ -2,3 +2,8 @@ !wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +## The accessors declare MarshalDirective metadata; the diagnostic is emitted for generated protocol-interface members. +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo new file mode 100644 index 00000000000..173a647f800 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo @@ -0,0 +1,2 @@ +!deprecated-attribute-missing! MTLFXTemporalDenoisedScalerBase::reactiveTextureUsage missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFXTemporalScalerBase::reactiveTextureUsage missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore index 9f8e170c901..e07de54d4d1 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.ignore @@ -11,5 +11,7 @@ ## (baseline for https://github.com/dotnet/macios/issues/26053) !unknown-selector! +FSBlockDeviceResource::proxyResourceForBSDName: not found !unknown-selector! +FSBlockDeviceResource::proxyResourceForBSDName:isWritable: not found -!extra-null-allowed! 'FSKit.FSFileName[] FSKit.IFSVolumeXattrOperations::GetSupportedXattrNames(FSKit.FSItem)' has a extraneous [NullAllowed] on return type +## The Xcode 27 headers annotate these values as non-null, but their documentation allows nil. +!extra-null-allowed! 'FSKit.FSFileName[] FSKit.IFSVolumeXattrHandler::GetSupportedXattrNames(FSKit.FSItem)' has a extraneous [NullAllowed] on return type +!extra-null-allowed! 'System.Void FSKit.IFSVolumeKernelOffloadedIoHandler::CompleteIo(FSKit.FSItem,System.Int64,System.UIntPtr,Foundation.NSError,FSKit.FSCompleteIoFlags,System.UIntPtr,FSKit.FSVolumeKernelOffloadedIoHandlerCompleteIoHandler)' has a extraneous [NullAllowed] on parameter #3 !missing-null-allowed! 'Foundation.NSProgress FSKit.IFSManageableResourceMaintenanceOperations::StartCheckWithTask(FSKit.FSTask,FSKit.FSTaskOptions,Foundation.NSError&)' is missing an [NullAllowed] on return type diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo new file mode 100644 index 00000000000..37c5483871c --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo @@ -0,0 +1,23 @@ +!deprecated-attribute-missing! MTLBlitCommandEncoder::synchronizeResource: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBlitCommandEncoder::synchronizeTexture:slice:level: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBuffer::didModifyRange: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBuffer::newRemoteBufferViewForDevice: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLBuffer::remoteStorageBuffer missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::isDepth24Stencil8PixelFormatSupported missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::isHeadless missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::isLowPower missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::isRemovable missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::location missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::locationNumber missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::maxTransferRate missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::peerCount missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::peerGroupID missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLDevice::peerIndex missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLTexture::newRemoteTextureViewForDevice: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLTexture::remoteStorageTexture missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore index 2e58e541304..c0372caded7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore @@ -2,3 +2,8 @@ !wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +## The accessors declare MarshalDirective metadata; the diagnostic is emitted for generated protocol-interface members. +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo new file mode 100644 index 00000000000..173a647f800 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo @@ -0,0 +1,2 @@ +!deprecated-attribute-missing! MTLFXTemporalDenoisedScalerBase::reactiveTextureUsage missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFXTemporalScalerBase::reactiveTextureUsage missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo new file mode 100644 index 00000000000..b097495e810 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo @@ -0,0 +1,6 @@ +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLParallelRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setColorStoreActionOptions:atIndex: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setDepthStoreActionOptions: missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLRenderCommandEncoder::setStencilStoreActionOptions: missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore index 2e58e541304..c0372caded7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.ignore @@ -2,3 +2,8 @@ !wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXTemporalDenoisedScalerBase::get_WorldToViewMatrix(): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 !wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXTemporalDenoisedScalerBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +## The accessors declare MarshalDirective metadata; the diagnostic is emitted for generated protocol-interface members. +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_ViewToClipMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! CoreGraphics.NMatrix4 MetalFX.IMTLFXFrameInterpolatorBase::get_WorldToViewMatrix(): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_ViewToClipMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 +!wrong-simd-missing-marshaldirective! System.Void MetalFX.IMTLFXFrameInterpolatorBase::set_WorldToViewMatrix(CoreGraphics.NMatrix4): simd type: simd_float4x4 diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.todo new file mode 100644 index 00000000000..173a647f800 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalFX.todo @@ -0,0 +1,2 @@ +!deprecated-attribute-missing! MTLFXTemporalDenoisedScalerBase::reactiveTextureUsage missing a [Deprecated] attribute +!deprecated-attribute-missing! MTLFXTemporalScalerBase::reactiveTextureUsage missing a [Deprecated] attribute From b06e22cade15faec3ab8b86dd82d8c911ea9a55a Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Fri, 4 Sep 2026 20:48:44 -0400 Subject: [PATCH 10/10] [tests] Skip crashing AudioServerPlugIn beta builds Avoid the native RegisterMediaDeviceExtension SIGSEGV on the affected macOS 27 beta 4 and beta 6 build trains while preserving coverage on later builds. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: cd1fd6e9-5bf0-492b-90ba-cef0e91b6466 --- tests/monotouch-test/AudioToolbox/AudioServerPlugInTest.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/monotouch-test/AudioToolbox/AudioServerPlugInTest.cs b/tests/monotouch-test/AudioToolbox/AudioServerPlugInTest.cs index fca7d084763..84494d6494b 100644 --- a/tests/monotouch-test/AudioToolbox/AudioServerPlugInTest.cs +++ b/tests/monotouch-test/AudioToolbox/AudioServerPlugInTest.cs @@ -19,8 +19,11 @@ public void RegisterMediaDeviceExtension () { TestRuntime.AssertSystemVersion (ApplePlatform.MacCatalyst, 27, 0); - if (NSProcessInfo.ProcessInfo.OperatingSystemVersionString.Contains ("26A5388", StringComparison.Ordinal)) - Assert.Ignore ("AudioServerPlugInRegisterMediaDeviceExtension crashes on macOS 27 beta 4."); + // The native API crashes instead of returning an error status on these macOS 27 builds. + // Add affected EXPECTED_MACOS_BUILD_VERSION prefixes here until the behavior changes. + if (NSProcessInfo.ProcessInfo.OperatingSystemVersionString.Contains ("26A5388", StringComparison.Ordinal) || + NSProcessInfo.ProcessInfo.OperatingSystemVersionString.Contains ("26A5425", StringComparison.Ordinal)) + Assert.Ignore ("AudioServerPlugInRegisterMediaDeviceExtension crashes on macOS 27 builds 26A5388 and 26A5425."); _ = AudioServerPlugIn.RegisterMediaDeviceExtension (IntPtr.Zero, () => { }); _ = AudioServerPlugIn.RegisterMediaDeviceExtension (IntPtr.Zero, null);