355 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) });
illink (1)
Microsoft.AspNetCore.Components.WebAssembly (2)
HotReload\HotReloadAgent.cs (1)
134if (handlerType.GetMethod(name, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static, new[] { typeof(Type[]) }) is MethodInfo updateMethod &&
HotReload\WebAssemblyHotReload.cs (1)
70var method = typeof(System.Reflection.Metadata.MetadataUpdater).GetMethod("GetCapabilities", BindingFlags.NonPublic | BindingFlags.Static, Type.EmptyTypes);
Microsoft.AspNetCore.Http.Extensions (30)
RequestDelegateFactory.cs (4)
55private static readonly MethodInfo GetRequiredServiceMethod = typeof(ServiceProviderServiceExtensions).GetMethod(nameof(ServiceProviderServiceExtensions.GetRequiredService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider) })!; 56private static readonly MethodInfo GetServiceMethod = typeof(ServiceProviderServiceExtensions).GetMethod(nameof(ServiceProviderServiceExtensions.GetService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider) })!; 57private static readonly MethodInfo GetRequiredKeyedServiceMethod = typeof(ServiceProviderKeyedServiceExtensions).GetMethod(nameof(ServiceProviderKeyedServiceExtensions.GetRequiredKeyedService), BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(IServiceProvider), typeof(object) })!; 58private 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( 2153var methodInfo = typeof(RequestDelegateFactoryTests).GetMethod( 2190var 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); 1313addMethod = type.GetMethod(Globals.AddMethodName, BindingFlags.Instance | BindingFlags.Public, addMethodTypeArray); 1341addMethod = type.GetMethod(Globals.AddMethodName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, addMethodTypeArray); 1346getEnumeratorMethod = type.GetMethod(Globals.GetEnumeratorMethodName, BindingFlags.Instance | BindingFlags.Public, Type.EmptyTypes);
System\Runtime\Serialization\DataContract.cs (2)
1050MethodInfo? method = UnderlyingType.GetMethod(Globals.ParseMethodName, BindingFlags.Public | BindingFlags.Static, new Type[] { typeof(string) }); 1984MethodInfo? method = type.GetMethod(methodName, BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public, Type.EmptyTypes);
System\Runtime\Serialization\Json\JsonFormatGeneratorStatics.cs (9)
193s_getUninitializedObjectMethod = typeof(XmlFormatReaderGenerator).GetMethod("UnsafeGetUninitializedObject", Globals.ScanAllMembers, new Type[] { typeof(Type) }); 206s_isStartElementMethod0 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, Type.EmptyTypes); 218s_isStartElementMethod2 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 401s_writeAttributeStringMethod = typeof(XmlWriterDelegator).GetMethod("WriteAttributeString", Globals.ScanAllMembers, new Type[] { typeof(string), typeof(string), typeof(string), typeof(string) }); 413s_writeEndElementMethod = typeof(XmlWriterDelegator).GetMethod("WriteEndElement", Globals.ScanAllMembers, Type.EmptyTypes); 463s_writeStartElementMethod = typeof(XmlWriterDelegator).GetMethod("WriteStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 476s_writeStartElementStringMethod = typeof(XmlWriterDelegator).GetMethod("WriteStartElement", Globals.ScanAllMembers, new Type[] { typeof(string), typeof(string) }); 489s_parseEnumMethod = typeof(Enum).GetMethod("Parse", BindingFlags.Static | BindingFlags.Public, new Type[] { typeof(Type), typeof(string) }); 502s_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) }); 141s_isStartElementMethod2 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, new Type[] { typeof(XmlDictionaryString), typeof(XmlDictionaryString) }); 155s_isStartElementMethod0 = typeof(XmlReaderDelegator).GetMethod("IsStartElement", Globals.ScanAllMembers, Type.EmptyTypes); 170s_getUninitializedObjectMethod = typeof(XmlFormatReaderGenerator).GetMethod("UnsafeGetUninitializedObject", Globals.ScanAllMembers, new Type[] { typeof(int) })!; 265s_storeCollectionMemberInfoMethod = typeof(XmlObjectSerializerReadContext).GetMethod("StoreCollectionMemberInfo", Globals.ScanAllMembers, new Type[] { typeof(object) }); 279s_resetCollectionMemberInfoMethod = typeof(XmlObjectSerializerReadContext).GetMethod("ResetCollectionMemberInfo", Globals.ScanAllMembers, Type.EmptyTypes); 364s_internalDeserializeMethod = typeof(XmlObjectSerializerReadContext).GetMethod("InternalDeserialize", Globals.ScanAllMembers, new Type[] { typeof(XmlReaderDelegator), typeof(int), typeof(RuntimeTypeHandle), typeof(string), typeof(string) }); 451s_readIfNullOrRefMethod = typeof(XmlObjectSerializerReadContext).GetMethod("ReadIfNullOrRef", Globals.ScanAllMembers, new Type[] { typeof(XmlReaderDelegator), typeof(Type), typeof(bool) }); 663s_createUnexpectedStateExceptionMethod = typeof(XmlObjectSerializerReadContext).GetMethod("CreateUnexpectedStateException", Globals.ScanAllMembers, new Type[] { typeof(XmlNodeType), typeof(XmlReaderDelegator) }); 708s_writeNullMethod = typeof(XmlObjectSerializerWriteContext).GetMethod("WriteNull", Globals.ScanAllMembers, new Type[] { typeof(XmlWriterDelegator), typeof(Type), typeof(bool) }); 736s_incrementCollectionCountMethod = typeof(XmlObjectSerializerWriteContext).GetMethod("IncrementCollectionCount", Globals.ScanAllMembers, new Type[] { typeof(XmlWriterDelegator), typeof(ICollection) }); 1053s_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)
1276enumerator = 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)
231MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 236MethodInfo XmlReader_get_NameTable = typeof(XmlReader).GetMethod( 241MethodInfo XmlNameTable_Add = typeof(XmlNameTable).GetMethod( 283MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 288MethodInfo XmlReader_IsStartElement = typeof(XmlReader).GetMethod( 329MethodInfo method = typeof(XmlSerializationReader).GetMethod( 399MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 404MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 501MethodInfo XmlSerializationReader_set_IsReturnValue = typeof(XmlSerializationReader).GetMethod( 519MethodInfo XmlReader_MoveToElement = typeof(XmlReader).GetMethod( 534MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 544MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 559MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 588MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 648MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 653MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 697MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 702MethodInfo XmlReader_ReadXXXString = typeof(XmlReader).GetMethod( 713MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 718MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 747MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 752MethodInfo XmlReader_ReadXXXString = typeof(XmlReader).GetMethod( 763MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 768MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 812MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 817MethodInfo XmlReader_method = typeof(XmlReader).GetMethod( 829MethodInfo XmlSerializationReader_CollapseWhitespace = typeof(XmlSerializationReader).GetMethod( 854ToXXX = typeof(XmlSerializationReader).GetMethod( 862ToXXX = typeof(XmlConvert).GetMethod( 870MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 875MethodInfo XmlReader_ReadXXXString = typeof(XmlReader).GetMethod( 886MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 891MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 983MethodInfo Hashtable_Add = typeof(Hashtable).GetMethod( 1045MethodInfo XmlSerializationReader_ToEnum = typeof(XmlSerializationReader).GetMethod( 1088MethodInfo String_op_Equality = typeof(string).GetMethod( 1109MethodInfo XmlSerializationReader_CreateUnknownConstantException = typeof(XmlSerializationReader).GetMethod( 1181MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1186MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 1206MethodInfo XmlSerializationReader_CollapseWhitespace = typeof(XmlSerializationReader).GetMethod( 1211MethodInfo XmlReader_ReadString = typeof(XmlReader).GetMethod( 1225MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 1290MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 1348MethodInfo XmlSerializationReader_GetXsiType = typeof(XmlSerializationReader).GetMethod( 1353MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 1392MethodInfo XmlSerializationReader_ReadTypedNull = typeof(XmlSerializationReader).GetMethod( 1440MethodInfo XmlSerializationReader_ReadTypedPrimitive = typeof(XmlSerializationReader).GetMethod( 1458MethodInfo XmlSerializationReader_ReadTypedPrimitive = typeof(XmlSerializationReader).GetMethod( 1471MethodInfo XmlSerializationReader_CreateUnknownTypeException = typeof(XmlSerializationReader).GetMethod( 1498MethodInfo XmlSerializationReader_CreateAbstractTypeException = typeof(XmlSerializationReader).GetMethod( 1513MethodInfo XmlSerializationReader_set_DecodeName = typeof(XmlSerializationReader).GetMethod( 1612MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1617MethodInfo XmlReader_MoveToElement = typeof(XmlReader).GetMethod( 1627MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 1636MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 1650MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 1666MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 1679MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 1700MethodInfo XmlQualifiedName_get_Name = typeof(XmlQualifiedName).GetMethod( 1705MethodInfo XmlQualifiedName_get_Namespace = typeof(XmlQualifiedName).GetMethod( 1743MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1748MethodInfo XmlReader_get_LocalName = typeof(XmlReader).GetMethod( 1753MethodInfo XmlReader_get_NamespaceURI = typeof(XmlReader).GetMethod( 1808MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 1813MethodInfo XmlReader_MoveToNextAttribute = typeof(XmlReader).GetMethod( 1867MethodInfo XmlSerializationReader_IsXmlnsAttribute = typeof(XmlSerializationReader).GetMethod( 1872MethodInfo XmlReader_get_Name = typeof(XmlReader).GetMethod( 1877MethodInfo XmlReader_get_LocalName = typeof(XmlReader).GetMethod( 1882MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 1909MethodInfo Add = xmlnsMember.Mapping.TypeDesc.Type!.GetMethod( 1914MethodInfo String_get_Length = typeof(string).GetMethod( 1942MethodInfo XmlSerializationReader_IsXmlnsAttribute = typeof(XmlSerializationReader).GetMethod( 1947MethodInfo XmlReader_get_Name = typeof(XmlReader).GetMethod( 1963MethodInfo XmlSerializationReader_get_Document = typeof(XmlSerializationReader).GetMethod( 1968MethodInfo XmlDocument_ReadNode = typeof(XmlDocument).GetMethod( 1980MethodInfo XmlSerializationReader_ParseWsdlArrayType = typeof(XmlSerializationReader).GetMethod( 2012MethodInfo elseCallMethod = typeof(XmlSerializationReader).GetMethod( 2071MethodInfo String_Split = typeof(string).GetMethod( 2076MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2081MethodInfo XmlReader_get_Value = typeof(XmlReader).GetMethod( 2169MethodInfo XmlSerializationReader_CreateReadOnlyCollectionException = typeof(XmlSerializationReader).GetMethod( 2235MethodInfo XmlReader_get_NodeType = typeof(XmlReader).GetMethod( 2240MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2267MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2272MethodInfo XmlReader_get_NodeType = typeof(XmlReader).GetMethod( 2323MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2328MethodInfo XmlReader_ReadString = typeof(XmlReader).GetMethod( 2333MethodInfo XmlSerializationReader_get_Document = typeof(XmlSerializationReader).GetMethod( 2338MethodInfo XmlDocument_CreateTextNode = typeof(XmlDocument).GetMethod( 2367MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2372MethodInfo XmlReader_ReadString = typeof(XmlReader).GetMethod( 2382MethodInfo XmlSerializationReader_CollapseWhitespace = typeof(XmlSerializationReader).GetMethod( 2395MethodInfo XmlSerializationReader_ReadString = typeof(XmlSerializationReader).GetMethod( 2507MethodInfo XmlSerializationReader_get_IsReturnValue = typeof(XmlSerializationReader).GetMethod( 2536MethodInfo XmlSerializationReader_set_IsReturnValue = typeof(XmlSerializationReader).GetMethod( 2636MethodInfo XmlSerializationReader_ShrinkArray = typeof(XmlSerializationReader).GetMethod( 2718MethodInfo XmlSerializationReader_EnsureArrayIndex = typeof(XmlSerializationReader).GetMethod( 2820MethodInfo Add = localA.LocalType.GetMethod( 2849MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 2885MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 2890MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 2906MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 2916MethodInfo XmlReader_ReadStartElement = typeof(XmlReader).GetMethod( 2928MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 2939MethodInfo XmlSerializationReader_ReadEndElement = typeof(XmlSerializationReader).GetMethod( 2999MethodInfo XmlSerializationReader_ReadNull = typeof(XmlSerializationReader).GetMethod( 3022MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3027MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 3036MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 3053MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3058MethodInfo XmlReader_get_IsEmptyElement = typeof(XmlReader).GetMethod( 3068MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 3092MethodInfo XmlSerializationReader_ReadElementQualifiedName = typeof(XmlSerializationReader).GetMethod( 3133MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3138MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( 3180MethodInfo XmlSerializationReader_ReadXmlXXX = typeof(XmlSerializationReader).GetMethod( 3198MethodInfo XmlSerializationReader_GetXsiType = typeof(XmlSerializationReader).GetMethod( 3223MethodInfo XmlSerializationReader_ReadSerializable = typeof(XmlSerializationReader).GetMethod( 3294MethodInfo XmlSerializationReader_ReadSerializable = typeof(XmlSerializationReader).GetMethod( 3313MethodInfo XmlSerializationReader_CreateBadDerivationException = typeof(XmlSerializationReader).GetMethod( 3331MethodInfo XmlSerializationReader_CreateMissingIXmlSerializableType = typeof(XmlSerializationReader).GetMethod( 3351MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3356MethodInfo XmlReader_MoveToContent = typeof(XmlReader).GetMethod( 3376MethodInfo XmlSerializationReader_get_Reader = typeof(XmlSerializationReader).GetMethod( 3381MethodInfo XmlReader_get_NodeType = typeof(XmlReader).GetMethod( 3447MethodInfo XmlSerializationReader_CreateInaccessibleConstructorException = typeof(XmlSerializationReader).GetMethod( 3458MethodInfo XmlSerializationReader_CreateCtorHasSecurityException = typeof(XmlSerializationReader).GetMethod( 3510MethodInfo XmlSerializationReader_UnknownNode1 = typeof(XmlSerializationReader).GetMethod( 3515MethodInfo XmlSerializationReader_UnknownNode2 = typeof(XmlSerializationReader).GetMethod( 3598MethodInfo 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.Security.Cryptography (2)
System\Security\Cryptography\XmlKeyHelper.cs (2)
274s_xDocumentCreate = xDocument.GetMethod( 283s_getElementsMethod = xElement.GetMethod(