357 references to GetMethod
Binding.UDS.IntegrationTests (2)
ServiceHelper.cs (2)
20var configureServicesMethod = startupType.GetMethod("ConfigureServices", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, new Type[] { typeof(IServiceCollection) }); 21var configureMethod = startupType.GetMethod("Configure", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, new Type[] { typeof(IHost) });
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
372.GetMethod("GetDocumentationComment", BindingFlags.Public | BindingFlags.Static, [typeof(ISymbol), typeof(Compilation), typeof(CultureInfo), typeof(bool), typeof(bool), typeof(CancellationToken)])!;
illink (1)
Microsoft.AspNetCore.Http.Extensions (31)
RequestDelegateFactory.cs (5)
55private static readonly MethodInfo GetHeaderSplitMethod = typeof(ParsingHelpers).GetMethod(nameof(ParsingHelpers.GetHeaderSplit), BindingFlags.Public | BindingFlags.Static, [typeof(IHeaderDictionary), typeof(string)])!; 56private static readonly MethodInfo GetRequiredServiceMethod = typeof(ServiceProviderServiceExtensions).GetMethod(nameof(ServiceProviderServiceExtensions.GetRequiredService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider) })!; 57private static readonly MethodInfo GetServiceMethod = typeof(ServiceProviderServiceExtensions).GetMethod(nameof(ServiceProviderServiceExtensions.GetService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider) })!; 58private static readonly MethodInfo GetRequiredKeyedServiceMethod = typeof(ServiceProviderKeyedServiceExtensions).GetMethod(nameof(ServiceProviderKeyedServiceExtensions.GetRequiredKeyedService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider), typeof(object) })!; 59private static readonly MethodInfo GetKeyedServiceMethod = typeof(ServiceProviderKeyedServiceExtensions).GetMethod(nameof(ServiceProviderKeyedServiceExtensions.GetKeyedService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider), typeof(object) })!;
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (4)
17private static readonly MethodInfo INotifyCompletion_OnCompleted = typeof(INotifyCompletion).GetMethod(nameof(INotifyCompletion.OnCompleted), Everything, new[] { typeof(Action) })!; 18private static readonly MethodInfo ICriticalNotifyCompletion_UnsafeOnCompleted = typeof(ICriticalNotifyCompletion).GetMethod(nameof(ICriticalNotifyCompletion.UnsafeOnCompleted), Everything, new[] { typeof(Action) })!; 54var getAwaiterMethod = type.GetMethod("GetAwaiter", Everything, Type.EmptyTypes); 93var getResultMethod = awaiterType.GetMethod("GetResult", Everything, Type.EmptyTypes);
src\Shared\ParameterBindingMethodCache.cs (22)
27private static readonly MethodInfo UriTryCreateMethod = typeof(Uri).GetMethod(nameof(Uri.TryCreate), BindingFlags.Public | BindingFlags.Static, new[] { typeof(string), typeof(UriKind), typeof(Uri).MakeByRefType() })!; 446var methodInfo = type.GetMethod(name, BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy, parameterTypes); 458var interfaceMethod = implementedInterface.GetMethod(name, BindingFlags.Public | BindingFlags.Static, parameterTypes); 510methodInfo = typeof(Enum).GetMethod( 538methodInfo = typeof(DateTime).GetMethod( 545methodInfo = typeof(DateTimeOffset).GetMethod( 552methodInfo = typeof(DateOnly).GetMethod( 559methodInfo = typeof(TimeOnly).GetMethod( 575method = typeof(long).GetMethod( 582method = typeof(ulong).GetMethod( 589method = typeof(int).GetMethod( 596method = typeof(uint).GetMethod( 603method = typeof(short).GetMethod( 610method = typeof(ushort).GetMethod( 617method = typeof(byte).GetMethod( 624method = typeof(sbyte).GetMethod( 631method = typeof(double).GetMethod( 640method = typeof(float).GetMethod( 649method = typeof(Half).GetMethod( 658method = typeof(decimal).GetMethod( 667method = typeof(IntPtr).GetMethod( 674method = typeof(BigInteger).GetMethod(
Microsoft.AspNetCore.Http.Extensions.Tests (5)
RequestDelegateFactoryTests.cs (5)
133var methodInfo = typeof(RequestDelegateFactoryTests).GetMethod( 166var methodInfo = typeof(TestNonStaticActionClass).GetMethod( 203var methodInfo = typeof(RequestDelegateFactoryTests).GetMethod( 2181var methodInfo = typeof(RequestDelegateFactoryTests).GetMethod( 2218var methodInfo = typeof(RequestDelegateFactoryTests).GetMethod(
Microsoft.AspNetCore.Mvc.Abstractions (22)
src\Shared\ParameterBindingMethodCache.cs (22)
27private static readonly MethodInfo UriTryCreateMethod = typeof(Uri).GetMethod(nameof(Uri.TryCreate), BindingFlags.Public | BindingFlags.Static, new[] { typeof(string), typeof(UriKind), typeof(Uri).MakeByRefType() })!; 446var methodInfo = type.GetMethod(name, BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy, parameterTypes); 458var interfaceMethod = implementedInterface.GetMethod(name, BindingFlags.Public | BindingFlags.Static, parameterTypes); 510methodInfo = typeof(Enum).GetMethod( 538methodInfo = typeof(DateTime).GetMethod( 545methodInfo = typeof(DateTimeOffset).GetMethod( 552methodInfo = typeof(DateOnly).GetMethod( 559methodInfo = typeof(TimeOnly).GetMethod( 575method = typeof(long).GetMethod( 582method = typeof(ulong).GetMethod( 589method = typeof(int).GetMethod( 596method = typeof(uint).GetMethod( 603method = typeof(short).GetMethod( 610method = typeof(ushort).GetMethod( 617method = typeof(byte).GetMethod( 624method = typeof(sbyte).GetMethod( 631method = typeof(double).GetMethod( 640method = typeof(float).GetMethod( 649method = typeof(Half).GetMethod( 658method = typeof(decimal).GetMethod( 667method = typeof(IntPtr).GetMethod( 674method = typeof(BigInteger).GetMethod(
Microsoft.AspNetCore.Mvc.Core (4)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (4)
17private static readonly MethodInfo INotifyCompletion_OnCompleted = typeof(INotifyCompletion).GetMethod(nameof(INotifyCompletion.OnCompleted), Everything, new[] { typeof(Action) })!; 18private static readonly MethodInfo ICriticalNotifyCompletion_UnsafeOnCompleted = typeof(ICriticalNotifyCompletion).GetMethod(nameof(ICriticalNotifyCompletion.UnsafeOnCompleted), Everything, new[] { typeof(Action) })!; 54var getAwaiterMethod = type.GetMethod("GetAwaiter", Everything, Type.EmptyTypes); 93var getResultMethod = awaiterType.GetMethod("GetResult", Everything, Type.EmptyTypes);
Microsoft.AspNetCore.OpenApi (26)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (4)
17private static readonly MethodInfo INotifyCompletion_OnCompleted = typeof(INotifyCompletion).GetMethod(nameof(INotifyCompletion.OnCompleted), Everything, new[] { typeof(Action) })!; 18private static readonly MethodInfo ICriticalNotifyCompletion_UnsafeOnCompleted = typeof(ICriticalNotifyCompletion).GetMethod(nameof(ICriticalNotifyCompletion.UnsafeOnCompleted), Everything, new[] { typeof(Action) })!; 54var getAwaiterMethod = type.GetMethod("GetAwaiter", Everything, Type.EmptyTypes); 93var getResultMethod = awaiterType.GetMethod("GetResult", Everything, Type.EmptyTypes);
src\Shared\ParameterBindingMethodCache.cs (22)
27private static readonly MethodInfo UriTryCreateMethod = typeof(Uri).GetMethod(nameof(Uri.TryCreate), BindingFlags.Public | BindingFlags.Static, new[] { typeof(string), typeof(UriKind), typeof(Uri).MakeByRefType() })!; 446var methodInfo = type.GetMethod(name, BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy, parameterTypes); 458var interfaceMethod = implementedInterface.GetMethod(name, BindingFlags.Public | BindingFlags.Static, parameterTypes); 510methodInfo = typeof(Enum).GetMethod( 538methodInfo = typeof(DateTime).GetMethod( 545methodInfo = typeof(DateTimeOffset).GetMethod( 552methodInfo = typeof(DateOnly).GetMethod( 559methodInfo = typeof(TimeOnly).GetMethod( 575method = typeof(long).GetMethod( 582method = typeof(ulong).GetMethod( 589method = typeof(int).GetMethod( 596method = typeof(uint).GetMethod( 603method = typeof(short).GetMethod( 610method = typeof(ushort).GetMethod( 617method = typeof(byte).GetMethod( 624method = typeof(sbyte).GetMethod( 631method = typeof(double).GetMethod( 640method = typeof(float).GetMethod( 649method = typeof(Half).GetMethod( 658method = typeof(decimal).GetMethod( 667method = typeof(IntPtr).GetMethod( 674method = typeof(BigInteger).GetMethod(
Microsoft.AspNetCore.Shared.Tests (4)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (4)
17private static readonly MethodInfo INotifyCompletion_OnCompleted = typeof(INotifyCompletion).GetMethod(nameof(INotifyCompletion.OnCompleted), Everything, new[] { typeof(Action) })!; 18private static readonly MethodInfo ICriticalNotifyCompletion_UnsafeOnCompleted = typeof(ICriticalNotifyCompletion).GetMethod(nameof(ICriticalNotifyCompletion.UnsafeOnCompleted), Everything, new[] { typeof(Action) })!; 54var getAwaiterMethod = type.GetMethod("GetAwaiter", Everything, Type.EmptyTypes); 93var getResultMethod = awaiterType.GetMethod("GetResult", Everything, Type.EmptyTypes);
Microsoft.AspNetCore.SignalR.Core (4)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (4)
17private static readonly MethodInfo INotifyCompletion_OnCompleted = typeof(INotifyCompletion).GetMethod(nameof(INotifyCompletion.OnCompleted), Everything, new[] { typeof(Action) })!; 18private static readonly MethodInfo ICriticalNotifyCompletion_UnsafeOnCompleted = typeof(ICriticalNotifyCompletion).GetMethod(nameof(ICriticalNotifyCompletion.UnsafeOnCompleted), Everything, new[] { typeof(Action) })!; 54var getAwaiterMethod = type.GetMethod("GetAwaiter", Everything, Type.EmptyTypes); 93var getResultMethod = awaiterType.GetMethod("GetResult", Everything, Type.EmptyTypes);
System.Private.DataContractSerialization (42)
System\Runtime\Serialization\CollectionDataContract.cs (4)
861MethodInfo? getCurrentMethod = enumeratorType.GetMethod(Globals.GetCurrentMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes); 1316addMethod = type.GetMethod(Globals.AddMethodName, BindingFlags.Instance | BindingFlags.Public, addMethodTypeArray); 1344addMethod = type.GetMethod(Globals.AddMethodName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, addMethodTypeArray); 1349getEnumeratorMethod = type.GetMethod(Globals.GetEnumeratorMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes);
System\Runtime\Serialization\DataContract.cs (2)
1067MethodInfo? method = UnderlyingType.GetMethod(Globals.ParseMethodName, BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(string) }); 2001MethodInfo? method = type.GetMethod(methodName, BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public, Type.EmptyTypes);
System\Runtime\Serialization\Json\JsonFormatGeneratorStatics.cs (9)
185s_getUninitializedObjectMethod = typeof(XmlFormatReaderGenerator).GetMethod("UnsafeGetUninitializedObject", Globals.ScanAllMembers, new Type[] { typeof(Type) }); 198s_isStartElementMethod0 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, Type.EmptyTypes); 210s_isStartElementMethod2 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 393s_writeAttributeStringMethod = typeof(XmlWriterDelegator).GetMethod("WriteAttributeString", Globals.ScanAllMembers, new Type[] { typeof(string), typeof(string), typeof(string), typeof(string) }); 405s_writeEndElementMethod = typeof(XmlWriterDelegator).GetMethod("WriteEndElement", Globals.ScanAllMembers, Type.EmptyTypes); 455s_writeStartElementMethod = typeof(XmlWriterDelegator).GetMethod("WriteStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 468s_writeStartElementStringMethod = typeof(XmlWriterDelegator).GetMethod("WriteStartElement", Globals.ScanAllMembers, new Type[] { typeof(string), typeof(string) }); 481s_parseEnumMethod = typeof(Enum).GetMethod("Parse", BindingFlags.Static | BindingFlags.Public, new Type[] { typeof(Type), typeof(string) }); 494s_getJsonMemberNameMethod = typeof(XmlObjectSerializerReadContextComplexJson).GetMethod("GetJsonMemberName", Globals.ScanAllMembers, new Type[] { typeof(XmlReaderDelegator) });
System\Runtime\Serialization\Json\JsonFormatWriterGenerator.cs (3)
381MethodInfo? moveNextMethod = enumeratorType.GetMethod(Globals.MoveNextMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes); 382MethodInfo? getCurrentMethod = enumeratorType.GetMethod(Globals.GetCurrentMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes); 593MethodInfo writeArrayMethodInfo = typeof(JsonWriterDelegator).GetMethod(
System\Runtime\Serialization\PrimitiveDataContract.cs (4)
70_helper.XmlFormatWriterMethod = typeof(XmlWriterDelegator).GetMethod(WriteMethodName, Globals.ScanAllMembers, new Type[] { UnderlyingType, typeof(XmlDictionaryString), typeof(XmlDictionaryString) })!; 72_helper.XmlFormatWriterMethod = typeof(XmlObjectSerializerWriteContext).GetMethod(WriteMethodName, Globals.ScanAllMembers, new Type[] { typeof(XmlWriterDelegator), UnderlyingType, typeof(XmlDictionaryString), typeof(XmlDictionaryString) })!; 86_helper.XmlFormatContentWriterMethod = typeof(XmlWriterDelegator).GetMethod(WriteMethodName, Globals.ScanAllMembers, new Type[] { UnderlyingType })!; 88_helper.XmlFormatContentWriterMethod = typeof(XmlObjectSerializerWriteContext).GetMethod(WriteMethodName, Globals.ScanAllMembers, new Type[] { typeof(XmlWriterDelegator), UnderlyingType })!;
System\Runtime\Serialization\SchemaExporter.cs (1)
632MethodInfo? getMethod = clrType.GetMethod(methodName, /*BindingFlags.DeclaredOnly |*/ BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public, new Type[] { typeof(XmlSchemaSet) });
System\Runtime\Serialization\XmlDataContract.cs (1)
308MethodInfo? XName_op_Implicit = xName.GetMethod(
System\Runtime\Serialization\XmlFormatGeneratorStatics.cs (15)
22s_writeStartElementMethod2 = typeof(XmlWriterDelegator).GetMethod("WriteStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 36s_writeStartElementMethod3 = typeof(XmlWriterDelegator).GetMethod("WriteStartElement", Globals.ScanAllMembers, new Type[] { typeof(string), typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 50s_writeEndElementMethod = typeof(XmlWriterDelegator).GetMethod("WriteEndElement", Globals.ScanAllMembers, Type.EmptyTypes); 64s_writeNamespaceDeclMethod = typeof(XmlWriterDelegator).GetMethod("WriteNamespaceDecl", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString) }); 139s_isStartElementMethod2 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 153s_isStartElementMethod0 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, Type.EmptyTypes); 168s_getUninitializedObjectMethod = typeof(XmlFormatReaderGenerator).GetMethod("UnsafeGetUninitializedObject", Globals.ScanAllMembers, new Type[] { typeof(int) })!; 260s_storeCollectionMemberInfoMethod = typeof(XmlObjectSerializerReadContext).GetMethod("StoreCollectionMemberInfo", Globals.ScanAllMembers, new Type[] { typeof(object) }); 274s_resetCollectionMemberInfoMethod = typeof(XmlObjectSerializerReadContext).GetMethod("ResetCollectionMemberInfo", Globals.ScanAllMembers, Type.EmptyTypes); 359s_internalDeserializeMethod = typeof(XmlObjectSerializerReadContext).GetMethod("InternalDeserialize", Globals.ScanAllMembers, new Type[] { typeof(XmlReaderDelegator), typeof(int), typeof(RuntimeTypeHandle), typeof(string), typeof(string) }); 446s_readIfNullOrRefMethod = typeof(XmlObjectSerializerReadContext).GetMethod("ReadIfNullOrRef", Globals.ScanAllMembers, new Type[] { typeof(XmlReaderDelegator), typeof(Type), typeof(bool) }); 658s_createUnexpectedStateExceptionMethod = typeof(XmlObjectSerializerReadContext).GetMethod("CreateUnexpectedStateException", Globals.ScanAllMembers, new Type[] { typeof(XmlNodeType), typeof(XmlReaderDelegator) }); 703s_writeNullMethod = typeof(XmlObjectSerializerWriteContext).GetMethod("WriteNull", Globals.ScanAllMembers, new Type[] { typeof(XmlWriterDelegator), typeof(Type), typeof(bool) }); 731s_incrementCollectionCountMethod = typeof(XmlObjectSerializerWriteContext).GetMethod("IncrementCollectionCount", Globals.ScanAllMembers, new Type[] { typeof(XmlWriterDelegator), typeof(ICollection) }); 1047s_throwInvalidDataContractExceptionMethod = typeof(DataContract).GetMethod("ThrowInvalidDataContractException", Globals.ScanAllMembers, new Type[] { typeof(string), typeof(Type) });
System\Runtime\Serialization\XmlFormatWriterGenerator.cs (3)
460MethodInfo? moveNextMethod = enumeratorType.GetMethod(Globals.MoveNextMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes); 461MethodInfo? getCurrentMethod = enumeratorType.GetMethod(Globals.GetCurrentMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes); 628_ilg.Call(typeof(XmlWriterDelegator).GetMethod(writeArrayMethod, Globals.ScanAllMembers, new Type[] { type, typeof(XmlDictionaryString), typeof(XmlDictionaryString) })!);
System.Private.Xml (211)
System\Xml\Serialization\CodeGenerator.cs (2)
301MethodInfo ICollection_get_Count = typeof(ICollection).GetMethod( 774Call(typeof(Type).GetMethod("GetTypeFromHandle", BindingFlags.Static | BindingFlags.Public, new Type[] { typeof(RuntimeTypeHandle) })!);
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (1)
1217MethodInfo? method = typeof(XmlSerializationReader).GetMethod(methodName, BindingFlags.Static | BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, new Type[] { typeof(string) });
System\Xml\Serialization\SourceInfo.cs (2)
106MethodInfo get_Item = varType.GetMethod( 225MethodInfo Nullable_get_Value = nullableType.GetMethod(
System\Xml\Serialization\Types.cs (1)
1298enumerator = type.GetMethod("System.Collections.IEnumerable.GetEnumerator", BindingFlags.Public | BindingFlags.Instance | BindingFlags.NonPublic, Type.EmptyTypes);
System\Xml\Serialization\XmlReflectionImporter.cs (1)
498MethodInfo? getMethod = getMethod = type.GetMethod(provider.MethodName, /* BindingFlags.DeclaredOnly | */ BindingFlags.Static | BindingFlags.Public, new Type[] { typeof(XmlSchemaSet) });
System\Xml\Serialization\XmlSerializationILGen.cs (4)
342MethodInfo XmlReader_IsStartElement = typeof(XmlReader).GetMethod( 367MethodInfo writerType_writeMethod = CreatedTypes[writerClass].GetMethod( 391MethodInfo readerType_readMethod = CreatedTypes[readerClass].GetMethod( 412MethodInfo Hashtable_Add = typeof(Hashtable).GetMethod(
System\Xml\Serialization\XmlSerializationReaderILGen.cs (130)
230MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 235MethodInfo XmlReader_get_NameTable = typeof(XmlReader).GetMethod( 240MethodInfo XmlNameTable_Add = typeof(XmlNameTable).GetMethod( 282MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 287MethodInfo XmlReader_IsStartElement = typeof(XmlReader).GetMethod( 328MethodInfo method = typeof(XmlSerializationReader).GetMethod( 398MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 403MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 500MethodInfo XmlSerializationReader_set_IsReturnValue = typeof(XmlSerializationReader).GetMethod( 518MethodInfo XmlReader_MoveToElement = typeof(XmlReader).GetMethod( 533MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 543MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 558MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 587MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 647MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 652MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 696MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 701MethodInfo XmlReader_ReadXXXString = typeof(XmlReader).GetMethod( 712MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 717MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 746MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 751MethodInfo XmlReader_ReadXXXString = typeof(XmlReader).GetMethod( 762MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 767MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 811MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 816MethodInfo XmlReader_method = typeof(XmlReader).GetMethod( 828MethodInfo XmlSerializationReader_CollapseWhitespace = typeof(XmlSerializationReader).GetMethod( 853ToXXX = typeof(XmlSerializationReader).GetMethod( 861ToXXX = typeof(XmlConvert).GetMethod( 869MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 874MethodInfo XmlReader_ReadXXXString = typeof(XmlReader).GetMethod( 885MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 890MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 982MethodInfo Hashtable_Add = typeof(Hashtable).GetMethod( 1044MethodInfo XmlSerializationReader_ToEnum = typeof(XmlSerializationReader).GetMethod( 1087MethodInfo String_op_Equality = typeof(string).GetMethod( 1108MethodInfo XmlSerializationReader_CreateUnknownConstantException = typeof(XmlSerializationReader).GetMethod( 1180MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1185MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 1205MethodInfo XmlSerializationReader_CollapseWhitespace = typeof(XmlSerializationReader).GetMethod( 1210MethodInfo XmlReader_ReadString = typeof(XmlReader).GetMethod( 1224MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 1289MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 1347MethodInfo XmlSerializationReader_GetXsiType = typeof(XmlSerializationReader).GetMethod( 1352MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 1391MethodInfo XmlSerializationReader_ReadTypedNull = typeof(XmlSerializationReader).GetMethod( 1439MethodInfo XmlSerializationReader_ReadTypedPrimitive = typeof(XmlSerializationReader).GetMethod( 1457MethodInfo XmlSerializationReader_ReadTypedPrimitive = typeof(XmlSerializationReader).GetMethod( 1470MethodInfo XmlSerializationReader_CreateUnknownTypeException = typeof(XmlSerializationReader).GetMethod( 1497MethodInfo XmlSerializationReader_CreateAbstractTypeException = typeof(XmlSerializationReader).GetMethod( 1512MethodInfo XmlSerializationReader_set_DecodeName = typeof(XmlSerializationReader).GetMethod( 1611MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1616MethodInfo XmlReader_MoveToElement = typeof(XmlReader).GetMethod( 1626MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 1635MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 1649MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 1665MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 1678MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 1699MethodInfo XmlQualifiedName_get_Name = typeof(XmlQualifiedName).GetMethod( 1704MethodInfo XmlQualifiedName_get_Namespace = typeof(XmlQualifiedName).GetMethod( 1742MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1747MethodInfo XmlReader_get_LocalName = typeof(XmlReader).GetMethod( 1752MethodInfo XmlReader_get_NamespaceURI = typeof(XmlReader).GetMethod( 1807MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1812MethodInfo XmlReader_MoveToNextAttribute = typeof(XmlReader).GetMethod( 1866MethodInfo XmlSerializationReader_IsXmlnsAttribute = typeof(XmlSerializationReader).GetMethod( 1871MethodInfo XmlReader_get_Name = typeof(XmlReader).GetMethod( 1876MethodInfo XmlReader_get_LocalName = typeof(XmlReader).GetMethod( 1881MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 1908MethodInfo Add = xmlnsMember.Mapping.TypeDesc.Type!.GetMethod( 1913MethodInfo String_get_Length = typeof(string).GetMethod( 1941MethodInfo XmlSerializationReader_IsXmlnsAttribute = typeof(XmlSerializationReader).GetMethod( 1946MethodInfo XmlReader_get_Name = typeof(XmlReader).GetMethod( 1962MethodInfo XmlSerializationReader_get_Document = typeof(XmlSerializationReader).GetMethod( 1967MethodInfo XmlDocument_ReadNode = typeof(XmlDocument).GetMethod( 1979MethodInfo XmlSerializationReader_ParseWsdlArrayType = typeof(XmlSerializationReader).GetMethod( 2011MethodInfo elseCallMethod = typeof(XmlSerializationReader).GetMethod( 2070MethodInfo String_Split = typeof(string).GetMethod( 2075MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2080MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 2168MethodInfo XmlSerializationReader_CreateReadOnlyCollectionException = typeof(XmlSerializationReader).GetMethod( 2234MethodInfo XmlReader_get_NodeType = typeof(XmlReader).GetMethod( 2239MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2266MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2271MethodInfo XmlReader_get_NodeType = typeof(XmlReader).GetMethod( 2322MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2327MethodInfo XmlReader_ReadString = typeof(XmlReader).GetMethod( 2332MethodInfo XmlSerializationReader_get_Document = typeof(XmlSerializationReader).GetMethod( 2337MethodInfo XmlDocument_CreateTextNode = typeof(XmlDocument).GetMethod( 2366MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2371MethodInfo XmlReader_ReadString = typeof(XmlReader).GetMethod( 2381MethodInfo XmlSerializationReader_CollapseWhitespace = typeof(XmlSerializationReader).GetMethod( 2394MethodInfo XmlSerializationReader_ReadString = typeof(XmlSerializationReader).GetMethod( 2506MethodInfo XmlSerializationReader_get_IsReturnValue = typeof(XmlSerializationReader).GetMethod( 2535MethodInfo XmlSerializationReader_set_IsReturnValue = typeof(XmlSerializationReader).GetMethod( 2635MethodInfo XmlSerializationReader_ShrinkArray = typeof(XmlSerializationReader).GetMethod( 2717MethodInfo XmlSerializationReader_EnsureArrayIndex = typeof(XmlSerializationReader).GetMethod( 2819MethodInfo Add = localA.LocalType.GetMethod( 2848MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 2884MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2889MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 2905MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 2915MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 2927MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 2938MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 2998MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 3021MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3026MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 3035MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 3052MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3057MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 3067MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 3091MethodInfo XmlSerializationReader_ReadElementQualifiedName = typeof(XmlSerializationReader).GetMethod( 3132MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3137MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 3179MethodInfo XmlSerializationReader_ReadXmlXXX = typeof(XmlSerializationReader).GetMethod( 3197MethodInfo XmlSerializationReader_GetXsiType = typeof(XmlSerializationReader).GetMethod( 3222MethodInfo XmlSerializationReader_ReadSerializable = typeof(XmlSerializationReader).GetMethod( 3293MethodInfo XmlSerializationReader_ReadSerializable = typeof(XmlSerializationReader).GetMethod( 3312MethodInfo XmlSerializationReader_CreateBadDerivationException = typeof(XmlSerializationReader).GetMethod( 3330MethodInfo XmlSerializationReader_CreateMissingIXmlSerializableType = typeof(XmlSerializationReader).GetMethod( 3350MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3355MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 3375MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3380MethodInfo XmlReader_get_NodeType = typeof(XmlReader).GetMethod( 3446MethodInfo XmlSerializationReader_CreateInaccessibleConstructorException = typeof(XmlSerializationReader).GetMethod( 3457MethodInfo XmlSerializationReader_CreateCtorHasSecurityException = typeof(XmlSerializationReader).GetMethod( 3509MethodInfo XmlSerializationReader_UnknownNode1 = typeof(XmlSerializationReader).GetMethod( 3514MethodInfo XmlSerializationReader_UnknownNode2 = typeof(XmlSerializationReader).GetMethod( 3597MethodInfo XmlSerializationReader_CreateUnknownNodeException = typeof(XmlSerializationReader).GetMethod(
System\Xml\Serialization\XmlSerializationWriterILGen.cs (70)
113MethodInfo XmlSerializationWriter_WriteXXX = typeof(XmlSerializationWriter).GetMethod( 161MethodInfo XmlConvert_ToString = typeof(XmlConvert).GetMethod( 179MethodInfo FromXXX = typeof(XmlSerializationWriter).GetMethod( 264MethodInfo XmlSerializationWriter_method = typeof(XmlSerializationWriter).GetMethod( 279MethodInfo XmlSerializationWriter_Method = typeof(XmlSerializationWriter).GetMethod( 292MethodInfo XmlSerializationWriter_Method = typeof(XmlSerializationWriter).GetMethod( 312MethodInfo XmlSerializationWriter_WriteEndElement = typeof(XmlSerializationWriter).GetMethod( 322MethodInfo XmlSerializationWriter_WriteEndElement = typeof(XmlSerializationWriter).GetMethod( 365MethodInfo XmlSerializationWriter_WriteStartDocument = typeof(XmlSerializationWriter).GetMethod( 373MethodInfo XmlSerializationWriter_TopLevelElement = typeof(XmlSerializationWriter).GetMethod( 556MethodInfo XmlSerializationWriter_WriteStartDocument = typeof(XmlSerializationWriter).GetMethod( 576MethodInfo XmlSerializationWriter_TopLevelElement = typeof(XmlSerializationWriter).GetMethod( 680MethodInfo XmlSerializationWriter_FromEnum = typeof(XmlSerializationWriter).GetMethod( 700MethodInfo CultureInfo_get_InvariantCulture = typeof(CultureInfo).GetMethod( 705MethodInfo Int64_ToString = typeof(long).GetMethod( 710MethodInfo XmlSerializationWriter_CreateInvalidEnumValueException = typeof(XmlSerializationWriter).GetMethod( 801MethodInfo XmlSerializationWriter_get_Writer = typeof(XmlSerializationWriter).GetMethod( 806MethodInfo XmlWriter_WriteStartElement = typeof(XmlWriter).GetMethod( 816MethodInfo XmlSerializationWriter_WriteXsiType = typeof(XmlSerializationWriter).GetMethod( 831MethodInfo XmlWriter_WriteString = typeof(XmlWriter).GetMethod( 844MethodInfo XmlWriter_WriteEndElement = typeof(XmlWriter).GetMethod( 867MethodInfo XmlSerializationWriter_get_Writer = typeof(XmlSerializationWriter).GetMethod( 872MethodInfo XmlWriter_WriteStartElement = typeof(XmlWriter).GetMethod( 882MethodInfo XmlSerializationWriter_WriteXsiType = typeof(XmlSerializationWriter).GetMethod( 894MethodInfo XmlWriter_WriteEndElement = typeof(XmlWriter).GetMethod( 941MethodInfo XmlSerializationWriter_WriteNullTagLiteral = typeof(XmlSerializationWriter).GetMethod( 959MethodInfo Object_GetType = typeof(object).GetMethod( 978MethodInfo XmlSerializationWriter_WriteTypedPrimitive = typeof(XmlSerializationWriter).GetMethod( 993MethodInfo XmlSerializationWriter_CreateUnknownTypeException = typeof(XmlSerializationWriter).GetMethod( 1011MethodInfo XmlSerializationWriter_set_EscapeName = typeof(XmlSerializationWriter).GetMethod( 1046MethodInfo XmlSerializationWriter_WriteStartElement = typeof(XmlSerializationWriter).GetMethod( 1056MethodInfo XmlSerializationWriter_WriteXsiType = typeof(XmlSerializationWriter).GetMethod( 1174MethodInfo XmlSerializationWriter_get_Writer = typeof(XmlSerializationWriter).GetMethod( 1179MethodInfo XmlWriter_WriteStartAttribute = typeof(XmlWriter).GetMethod( 1225MethodInfo XmlSerializationWriter_get_Writer = typeof(XmlSerializationWriter).GetMethod( 1230MethodInfo XmlWriter_WriteString = typeof(XmlWriter).GetMethod( 1246MethodInfo StringBuilder_Append = typeof(StringBuilder).GetMethod( 1267MethodInfo method = methodType.GetMethod( 1289MethodInfo XmlSerializationWriter_get_Writer = typeof(XmlSerializationWriter).GetMethod( 1294MethodInfo XmlWriter_WriteEndAttribute = typeof(XmlWriter).GetMethod( 1305MethodInfo StringBuilder_get_Length = typeof(StringBuilder).GetMethod( 1325MethodInfo Object_ToString = typeof(object).GetMethod( 1333MethodInfo XmlSerializationWriter_WriteAttribute = typeof(XmlSerializationWriter).GetMethod( 1363MethodInfo XmlSerializationWriter_WriteXmlAttribute = typeof(XmlSerializationWriter).GetMethod( 1453MethodInfo XmlSerializationWriter_CreateInvalidChoiceIdentifierValueException = typeof(XmlSerializationWriter).GetMethod( 1489getEnumeratorMethod = typeIEnumerable.GetMethod( 1500getEnumeratorMethod = typeIEnumerable.GetMethod( 1527MethodInfo IEnumerator_MoveNext = typeof(IEnumerator).GetMethod( 1711MethodInfo XmlNode_get_Name = typeof(XmlNode).GetMethod( 1716MethodInfo XmlNode_get_NamespaceURI = typeof(XmlNode).GetMethod( 1724MethodInfo String_op_Equality = typeof(string).GetMethod( 1747MethodInfo XmlSerializationWriter_CreateChoiceIdentifierValueException = typeof(XmlSerializationWriter).GetMethod( 1774MethodInfo XmlSerializationWriter_CreateUnknownAnyElementException = typeof(XmlSerializationWriter).GetMethod( 1781MethodInfo XmlNode_get_Name = typeof(XmlNode).GetMethod( 1786MethodInfo XmlNode_get_NamespaceURI = typeof(XmlNode).GetMethod( 1832MethodInfo XmlSerializationWriter_CreateUnknownTypeException = typeof(XmlSerializationWriter).GetMethod( 1863MethodInfo XmlSerializationWriter_WriteValue = typeof(XmlSerializationWriter).GetMethod( 1875MethodInfo WriteTo = source.Type!.GetMethod( 1880MethodInfo XmlSerializationWriter_get_Writer = typeof(XmlSerializationWriter).GetMethod( 1904MethodInfo Nullable_get_HasValue = element.Mapping.TypeDesc.Type!.GetMethod( 2045MethodInfo XmlSerializationWriter_CreateInvalidAnyTypeException = typeof(XmlSerializationWriter).GetMethod( 2066MethodInfo XmlSerializationWriter_func = typeof(XmlSerializationWriter).GetMethod( 2095MethodInfo String_get_Length = typeof(string).GetMethod( 2137MethodInfo op_Inequality = valueType.GetMethod( 2167MethodInfo XmlSerializationWriter_CreateMismatchChoiceException = typeof(XmlSerializationWriter).GetMethod( 2194MethodInfo XmlSerializationWriter_WriteNamespaceDeclarations = typeof(XmlSerializationWriter).GetMethod( 2395MethodInfo XName_op_Implicit = xName.GetMethod( 2420MethodInfo getTypeInfoMehod = typeof(IntrospectionExtensions).GetMethod( 2465MethodInfo IEnumeratorMoveNext = typeof(IEnumerator).GetMethod( 2474MethodInfo Activator_CreateInstance = typeof(Activator).GetMethod(
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\RegexCompiler.cs (4)
37private static MethodInfo IsBoundaryMethod => field ??= typeof(RegexRunner).GetMethod("IsBoundary", BindingFlags.NonPublic | BindingFlags.Static, [typeof(ReadOnlySpan<char>), typeof(int)])!; 38private static MethodInfo IsPreWordCharBoundaryMethod => field ??= typeof(RegexRunner).GetMethod("IsPreWordCharBoundary", BindingFlags.NonPublic | BindingFlags.Static, [typeof(ReadOnlySpan<char>), typeof(int)])!; 39private static MethodInfo IsPostWordCharBoundaryMethod => field ??= typeof(RegexRunner).GetMethod("IsPostWordCharBoundary", BindingFlags.NonPublic | BindingFlags.Static, [typeof(ReadOnlySpan<char>), typeof(int)])!; 41private static MethodInfo IsECMABoundaryMethod => field ??= typeof(RegexRunner).GetMethod("IsECMABoundary", BindingFlags.NonPublic | BindingFlags.Static, [typeof(ReadOnlySpan<char>), typeof(int)])!;