Implemented interface member:
method
GetMethod
System.Runtime.InteropServices._Type.GetMethod(System.String)
230 references to GetMethod
mscorlib (14)
system\delegate.cs (1)
277MethodInfo invoke = this.GetType().GetMethod("Invoke");
system\reflection\emit\ilgenerator.cs (2)
1205MethodInfo prop = typeof(Console).GetMethod("get_Out"); 1237MethodInfo prop = typeof(Console).GetMethod("get_Out");
system\runtime\interopservices\tceadaptergen\eventproviderwriter.cs (7)
111MethodInfo CPAdviseMethod = typeof(IConnectionPoint).GetMethod( "Advise" ); 282MethodInfo CPUnadviseMethod = typeof(IConnectionPoint).GetMethod( "Unadvise" ); 286MethodInfo ReleaseComObjectMethod = typeof(Marshal).GetMethod( "ReleaseComObject" ); 479MethodInfo CPCFindCPMethod = typeof(IConnectionPointContainer).GetMethod( "FindConnectionPoint" ); 603MethodInfo CPUnadviseMethod = typeof(IConnectionPoint).GetMethod( "Unadvise" ); 607MethodInfo ReleaseComObjectMethod = typeof(Marshal).GetMethod( "ReleaseComObject" ); 746MethodInfo SuppressFinalizeMethod = typeof(GC).GetMethod("SuppressFinalize");
system\runtime\interopservices\tceadaptergen\eventsinkhelperwriter.cs (2)
67MethodInfo AddMeth = m_EventItfType.GetMethod( "add_" + aMethods[cMethods].Name ); 122MethodInfo DelegateInvokeMethod = DelegateCls.GetMethod( "Invoke" );
system\runtime\remoting\remotingproxy.cs (2)
30private static MethodInfo _getTypeMethod = typeof(System.Object).GetMethod("GetType"); 31private static MethodInfo _getHashCodeMethod = typeof(System.Object).GetMethod("GetHashCode");
PresentationBuildTasks (1)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
1985MethodInfo methodInvoke = eventHandlerType.GetMethod("Invoke");
System (2)
regex\system\text\regularexpressions\RegexCompiler.cs (2)
167_getCurrentCulture = typeof(CultureInfo).GetMethod("get_CurrentCulture"); 168_getInvariantCulture = typeof(CultureInfo).GetMethod("get_InvariantCulture");
System.Activities (3)
System\Activities\Debugger\State.cs (1)
135MethodInfo methodInfo = this.type.GetMethod(withPriming ? StateManager.MethodWithPrimingPrefix + this.methodName : this.methodName);
System\Activities\ExpressionUtilities.cs (2)
23static MethodInfo createLocationFactoryGenericMethod = typeof(ExpressionUtilities).GetMethod("CreateLocationFactory"); 55propertyDescriptorGetValue = typeof(PropertyDescriptor).GetMethod("GetValue");
System.Activities.Core.Presentation (4)
System\Activities\Core\Presentation\GenericFlowSwitchHelper.cs (4)
18static readonly MethodInfo genericCopy = typeof(GenericFlowSwitchHelper).GetMethod("GenericCopy"); 19static readonly MethodInfo genericCreateGenericFlowSwitchLink = typeof(GenericFlowSwitchHelper).GetMethod("CreateGenericFlowSwitchLink"); 20static readonly MethodInfo genericGetCaseName = typeof(GenericFlowSwitchHelper).GetMethod("GenericGetCaseName"); 21static readonly MethodInfo genericRemapFlowSwitch = typeof(GenericFlowSwitchHelper).GetMethod("GenericRemapFlowSwitch");
System.Activities.Presentation (14)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\ViewStateXamlHelper.cs (8)
22static readonly MethodInfo GetViewStateManager = typeof(WorkflowViewState).GetMethod("GetViewStateManager"); 23static readonly MethodInfo SetViewStateManager = typeof(WorkflowViewState).GetMethod("SetViewStateManager"); 24static readonly MethodInfo GetIdRef = typeof(WorkflowViewState).GetMethod("GetIdRef"); 25static readonly MethodInfo SetIdRef = typeof(WorkflowViewState).GetMethod("SetIdRef"); 39static readonly MethodInfo GetOriginalDefinition = typeof(DynamicUpdateInfo).GetMethod("GetOriginalDefinition"); 40static readonly MethodInfo SetOriginalDefinition = typeof(DynamicUpdateInfo).GetMethod("SetOriginalDefinition"); 43static readonly MethodInfo GetOriginalActivityBuilder = typeof(DynamicUpdateInfo).GetMethod("GetOriginalActivityBuilder"); 44static readonly MethodInfo SetOriginalActivityBuilder = typeof(DynamicUpdateInfo).GetMethod("SetOriginalActivityBuilder");
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (4)
1126this.addMethod = type.GetMethod("Add"); 1127this.removeMethod = type.GetMethod("Remove"); 1139this.getEnumeratorMethod = type.GetMethod("GetEnumerator"); 1149this.clearMethod = type.GetMethod("Clear");
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (2)
526MethodInfo getPropertyValueMethodInfo = typeof(ModelItemImpl).GetMethod("GetPropertyValue"); 527MethodInfo setPropertyValueMethodInfo = typeof(ModelItemImpl).GetMethod("SetPropertyValue");
System.Core (39)
Microsoft\Scripting\Actions\CallSite.cs (5)
113method = typeof(CallSite<>).MakeGenericType(delegateType).GetMethod("Create"); 263MethodInfo invoke = target.GetMethod("Invoke"); 342typeof(CallSiteOps).GetMethod("SetNotMatched"), 440typeof(CallSiteOps).GetMethod("GetMatch"), 445typeof(CallSiteOps).GetMethod("ClearMatch"),
Microsoft\Scripting\Actions\CallSiteBinder.cs (2)
73MethodInfo invoke = target.GetMethod("Invoke"); 193typeof(CallSiteOps).GetMethod("SetNotMatched"),
Microsoft\Scripting\Actions\CallSiteHelpers.cs (1)
22private static Type _knownNonDynamicMethodType = typeof(object).GetMethod("ToString").GetType();
Microsoft\Scripting\Actions\DynamicMetaObjectBinder.cs (2)
185typeof(RemotingServices).GetMethod("IsObjectOutOfAppDomain"), 196typeof(RemotingServices).GetMethod("IsObjectOutOfAppDomain"),
Microsoft\Scripting\Actions\DynamicObject.cs (4)
532typeof(object).GetMethod("GetType") 561typeof(DynamicObject).GetMethod(methodName), 618typeof(DynamicObject).GetMethod(methodName), 678typeof(DynamicObject).GetMethod(methodName),
Microsoft\Scripting\Actions\ExpandoObject.cs (5)
700typeof(RuntimeOps).GetMethod("ExpandoTryGetValue"), 767typeof(RuntimeOps).GetMethod("ExpandoTrySetValue"), 786typeof(RuntimeOps).GetMethod("ExpandoTryDeleteValue"), 831typeof(RuntimeOps).GetMethod("ExpandoPromoteClass"), 844typeof(RuntimeOps).GetMethod("ExpandoCheckVersion"),
Microsoft\Scripting\Ast\BinaryExpression.cs (2)
1340MethodInfo method = delegateType.GetMethod("Invoke"); 1477MethodInfo mi = delegateType.GetMethod("Invoke");
Microsoft\Scripting\Ast\DynamicExpression.cs (3)
47Debug.Assert(delegateType.GetMethod("Invoke").GetReturnType() == typeof(object) || GetType() != typeof(DynamicExpression)); 465Debug.Assert(delegateType.GetMethod("Invoke").GetReturnType() == returnType); 847var method = delegateType.GetMethod("Invoke");
Microsoft\Scripting\Ast\InvocationExpression.cs (1)
202return delegateType.GetMethod("Invoke");
Microsoft\Scripting\Ast\LambdaExpression.cs (2)
113get { return Type.GetMethod("Invoke").ReturnType; } 531mi = delegateType.GetMethod("Invoke");
Microsoft\Scripting\Ast\MemberExpression.cs (1)
315if (type.IsInterface && method.Name == propertyMethod.Name && type.GetMethod(method.Name) == propertyMethod) {
Microsoft\Scripting\Ast\TypeBinaryExpression.cs (1)
127Expression getType = Expression.Call(value, typeof(object).GetMethod("GetType"));
Microsoft\Scripting\Compiler\ExpressionQuoter.cs (1)
145typeof(RuntimeOps).GetMethod("MergeRuntimeVariables"),
Microsoft\Scripting\Compiler\ILGen.cs (1)
257il.Emit(OpCodes.Call, typeof(Type).GetMethod("GetTypeFromHandle"));
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (3)
184expr = Expression.Call(expr, expr.Type.GetMethod("Invoke"), node.Arguments); 197List<WriteBack> wb = EmitArguments(lambda.Type.GetMethod("Invoke"), invoke); 490var invoke = node.DelegateType.GetMethod("Invoke");
Microsoft\Scripting\Compiler\LambdaCompiler.Logical.cs (2)
141_ilg.Emit(OpCodes.Callvirt, b.Conversion.Type.GetMethod("Invoke")); 187_ilg.Emit(OpCodes.Callvirt, b.Conversion.Type.GetMethod("Invoke"));
Microsoft\Scripting\Compiler\LambdaCompiler.Unary.cs (1)
49_ilg.Emit(OpCodes.Call, typeof(RuntimeOps).GetMethod("Quote"));
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
174RequireNoRefArgs(node.DelegateType.GetMethod("Invoke"));
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
126System.Reflection.MethodInfo methodInfo = sourceItf.GetMethod(eventInfo.Name);
System.Data (15)
cdf\src\NetFx40\Tools\Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\ViewStateXamlHelper.cs (8)
22static readonly MethodInfo GetViewStateManager = typeof(WorkflowViewState).GetMethod("GetViewStateManager"); 23static readonly MethodInfo SetViewStateManager = typeof(WorkflowViewState).GetMethod("SetViewStateManager"); 24static readonly MethodInfo GetIdRef = typeof(WorkflowViewState).GetMethod("GetIdRef"); 25static readonly MethodInfo SetIdRef = typeof(WorkflowViewState).GetMethod("SetIdRef"); 39static readonly MethodInfo GetOriginalDefinition = typeof(DynamicUpdateInfo).GetMethod("GetOriginalDefinition"); 40static readonly MethodInfo SetOriginalDefinition = typeof(DynamicUpdateInfo).GetMethod("SetOriginalDefinition"); 43static readonly MethodInfo GetOriginalActivityBuilder = typeof(DynamicUpdateInfo).GetMethod("GetOriginalActivityBuilder"); 44static readonly MethodInfo SetOriginalActivityBuilder = typeof(DynamicUpdateInfo).GetMethod("SetOriginalActivityBuilder");
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (4)
1126this.addMethod = type.GetMethod("Add"); 1127this.removeMethod = type.GetMethod("Remove"); 1139this.getEnumeratorMethod = type.GetMethod("GetEnumerator"); 1149this.clearMethod = type.GetMethod("Clear");
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (2)
526MethodInfo getPropertyValueMethodInfo = typeof(ModelItemImpl).GetMethod("GetPropertyValue"); 527MethodInfo setPropertyValueMethodInfo = typeof(ModelItemImpl).GetMethod("SetPropertyValue");
fx\src\data\System\Data\SqlClient\SqlUtil.cs (1)
1860typeof(SysTx.Transaction).GetMethod("GetPromotedToken"));
System.Data.Entity (38)
System\Data\Common\Internal\Materialization\CoordinatorScratchpad.cs (1)
310private static readonly MethodInfo s_userMaterializationFuncInvokeMethod = typeof(Func<DbDataReader, object[], object>).GetMethod("Invoke");
System\Data\Common\Internal\Materialization\Translator.cs (31)
537private static readonly MethodInfo DbDataReader_GetValue = typeof(DbDataReader).GetMethod("GetValue"); 538private static readonly MethodInfo DbDataReader_GetString = typeof(DbDataReader).GetMethod("GetString"); 539private static readonly MethodInfo DbDataReader_GetInt16 = typeof(DbDataReader).GetMethod("GetInt16"); 540private static readonly MethodInfo DbDataReader_GetInt32 = typeof(DbDataReader).GetMethod("GetInt32"); 541private static readonly MethodInfo DbDataReader_GetInt64 = typeof(DbDataReader).GetMethod("GetInt64"); 542private static readonly MethodInfo DbDataReader_GetBoolean = typeof(DbDataReader).GetMethod("GetBoolean"); 543private static readonly MethodInfo DbDataReader_GetDecimal = typeof(DbDataReader).GetMethod("GetDecimal"); 544private static readonly MethodInfo DbDataReader_GetFloat = typeof(DbDataReader).GetMethod("GetFloat"); 545private static readonly MethodInfo DbDataReader_GetDouble = typeof(DbDataReader).GetMethod("GetDouble"); 546private static readonly MethodInfo DbDataReader_GetDateTime = typeof(DbDataReader).GetMethod("GetDateTime"); 547private static readonly MethodInfo DbDataReader_GetGuid = typeof(DbDataReader).GetMethod("GetGuid"); 548private static readonly MethodInfo DbDataReader_GetByte = typeof(DbDataReader).GetMethod("GetByte"); 549private static readonly MethodInfo DbDataReader_IsDBNull = typeof(DbDataReader).GetMethod("IsDBNull"); 566private static readonly MethodInfo Shaper_Discriminate = typeof(Shaper).GetMethod("Discriminate"); 567private static readonly MethodInfo Shaper_GetPropertyValueWithErrorHandling = typeof(Shaper).GetMethod("GetPropertyValueWithErrorHandling"); 568private static readonly MethodInfo Shaper_GetColumnValueWithErrorHandling = typeof(Shaper).GetMethod("GetColumnValueWithErrorHandling"); 569private static readonly MethodInfo Shaper_GetGeographyColumnValue = typeof(Shaper).GetMethod("GetGeographyColumnValue"); 570private static readonly MethodInfo Shaper_GetGeometryColumnValue = typeof(Shaper).GetMethod("GetGeometryColumnValue"); 571private static readonly MethodInfo Shaper_GetSpatialColumnValueWithErrorHandling = typeof(Shaper).GetMethod("GetSpatialColumnValueWithErrorHandling"); 572private static readonly MethodInfo Shaper_GetSpatialPropertyValueWithErrorHandling = typeof(Shaper).GetMethod("GetSpatialPropertyValueWithErrorHandling"); 573private static readonly MethodInfo Shaper_HandleEntity = typeof(Shaper).GetMethod("HandleEntity"); 574private static readonly MethodInfo Shaper_HandleEntityAppendOnly = typeof(Shaper).GetMethod("HandleEntityAppendOnly"); 575private static readonly MethodInfo Shaper_HandleEntityNoTracking = typeof(Shaper).GetMethod("HandleEntityNoTracking"); 576private static readonly MethodInfo Shaper_HandleFullSpanCollection = typeof(Shaper).GetMethod("HandleFullSpanCollection"); 577private static readonly MethodInfo Shaper_HandleFullSpanElement = typeof(Shaper).GetMethod("HandleFullSpanElement"); 578private static readonly MethodInfo Shaper_HandleIEntityWithKey = typeof(Shaper).GetMethod("HandleIEntityWithKey"); 579private static readonly MethodInfo Shaper_HandleRelationshipSpan = typeof(Shaper).GetMethod("HandleRelationshipSpan"); 580private static readonly MethodInfo Shaper_SetColumnValue = typeof(Shaper).GetMethod("SetColumnValue"); 581private static readonly MethodInfo Shaper_SetEntityRecordInfo = typeof(Shaper).GetMethod("SetEntityRecordInfo"); 582private static readonly MethodInfo Shaper_SetState = typeof(Shaper).GetMethod("SetState"); 583private static readonly MethodInfo Shaper_SetStatePassthrough = typeof(Shaper).GetMethod("SetStatePassthrough");
System\Data\Metadata\AspProxy.cs (1)
156MethodInfo miMapPath = hostingEnvType.GetMethod("MapPath");
System\Data\Metadata\Edm\LightweightCodeGenerator.cs (3)
242gen.Emit(OpCodes.Call, realType.GetMethod("get_HasValue")); 246gen.Emit(OpCodes.Call, realType.GetMethod("get_Value")); 445gen.Emit(OpCodes.Callvirt, typeof(ReflectionPermission).GetMethod("Demand"));
System\Data\Objects\Internal\EntityProxyFactory.cs (2)
889MethodInfo interceptorInvoke = TypeBuilder.GetMethod(interceptorType, typeof(Func<,,>).GetMethod("Invoke")); 1352MethodInfo specificEntityReferenceSetValue = typeof(EntityReference<>).MakeGenericType(baseProperty.PropertyType).GetMethod("set_Value"); ;
System.Data.Linq (1)
SqlClient\Query\QueryConverter.cs (1)
360return sql.MethodCall(invoke.Type, typeof(Delegate).GetMethod("DynamicInvoke"), expr, new SqlExpression[] {sca}, this.dominatingExpression);
System.Data.Services.Client (6)
System\Data\Services\Client\ALinq\ResourceBinder.cs (2)
1285else if (mce.Method == t.GetMethod("IncludeTotalCount")) 1571return call.Method == typeof(object).GetMethod("ReferenceEquals");
System\Data\Services\Client\ClientType.cs (1)
608MethodInfo methodInfo = implementationType.GetMethod(methodName);
System\Data\Services\Client\DataServiceQueryOfT.cs (3)
158MethodInfo mi = typeof(DataServiceQuery<TElement>).GetMethod("Expand"); 172MethodInfo mi = typeof(DataServiceQuery<TElement>).GetMethod("IncludeTotalCount"); 190MethodInfo mi = typeof(DataServiceQuery<TElement>).GetMethod("AddQueryOption");
System.Data.SqlXml (5)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
415MethodInfo methInfo = className.GetMethod(methName);
System\Xml\Xsl\IlGen\IteratorDescriptor.cs (2)
106Debug.Assert(locIter.LocalType.GetMethod("get_Current").ReturnType == itemStorageType, 477this.helper.Call(this.storage.CurrentLocation.LocalType.GetMethod("get_Current"));
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
351mi = t.GetMethod(name.LocalName);
System\Xml\Xsl\Runtime\XsltLibrary.cs (1)
76MethodInfo methInfo = className.GetMethod(methName);
System.Runtime.Serialization (22)
System\Runtime\Serialization\CodeGenerator.cs (2)
29getTypeFromHandle = typeof(Type).GetMethod("GetTypeFromHandle"); 202MethodInfo signature = delegateType.GetMethod("Invoke");
System\Runtime\Serialization\CollectionDataContract.cs (7)
958addMethod = type.GetMethod(Globals.AddMethodName); 959getEnumeratorMethod = Globals.TypeOfIEnumerableGeneric.MakeGenericType(Globals.TypeOfKeyValuePair.MakeGenericType(genericArgs)).GetMethod(Globals.GetEnumeratorMethodName); 966addMethod = Globals.TypeOfICollectionGeneric.MakeGenericType(itemType).GetMethod(Globals.AddMethodName); 968getEnumeratorMethod = Globals.TypeOfIEnumerableGeneric.MakeGenericType(itemType).GetMethod(Globals.GetEnumeratorMethodName); 976addMethod = type.GetMethod(Globals.AddMethodName); 983addMethod = Globals.TypeOfIList.GetMethod(Globals.AddMethodName); 986getEnumeratorMethod = Globals.TypeOfIEnumerable.GetMethod(Globals.GetEnumeratorMethodName);
System\Runtime\Serialization\Json\JsonFormatGeneratorStatics.cs (4)
137boxPointer = typeof(Pointer).GetMethod("Box"); 305ienumeratorMoveNextMethod = typeof(IEnumerator).GetMethod("MoveNext"); 341onDeserializationMethod = typeof(IDeserializationCallback).GetMethod("OnDeserialization"); 425unboxPointer = typeof(Pointer).GetMethod("Unbox");
System\Runtime\Serialization\Json\JsonFormatReaderGenerator.cs (1)
226MethodInfo signature = delegateType.GetMethod("Invoke");
System\Runtime\Serialization\Json\JsonFormatWriterGenerator.cs (2)
154MethodInfo signature = delegateType.GetMethod("Invoke"); 736ilg.Call(null, typeof(Type).GetMethod("GetTypeHandle"), memberValue);
System\Runtime\Serialization\XmlFormatGeneratorStatics.cs (5)
90boxPointer = typeof(Pointer).GetMethod("Box"); 116ienumeratorMoveNextMethod = typeof(IEnumerator).GetMethod("MoveNext"); 194onDeserializationMethod = typeof(IDeserializationCallback).GetMethod("OnDeserialization"); 207unboxPointer = typeof(Pointer).GetMethod("Unbox"); 929extensionDataSetExplicitMethodInfo = typeof(IExtensibleDataObject).GetMethod(Globals.ExtensionDataSetMethod);
System\Runtime\Serialization\XmlFormatWriterGenerator.cs (1)
713ilg.Call(null, typeof(Type).GetMethod("GetTypeHandle"), memberValue);
System.ServiceModel (7)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
101if (methodCall.MethodBase == typeof(object).GetMethod("GetType"))
System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
439MethodInfo methodInfo = typeof(IHttpGetMetadata).GetMethod(HttpGetImpl.GetMethodName);
System\ServiceModel\Dispatcher\CodeGenerator.cs (4)
74getTypeFromHandle = typeof(Type).GetMethod("GetTypeFromHandle"); 104boxPointer = typeof(Pointer).GetMethod("Box"); 114unboxPointer = typeof(Pointer).GetMethod("Unbox"); 121MethodInfo signature = delegateType.GetMethod("Invoke");
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (1)
58method = type.GetMethod(methodName);
System.Web (6)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (1)
1384MethodInfo mi = eventHandlerType.GetMethod("Invoke");
UI\WebControls\ModelDataSourceView.cs (3)
464MethodInfo countHelperMethod = typeof(QueryableHelpers).GetMethod("CountHelper").MakeGenericMethod(modelType); 468MethodInfo isOrderingMethodFoundMethod = typeof(QueryableHelpers).GetMethod("IsOrderingMethodFound").MakeGenericMethod(modelType); 484MethodInfo sortPageHelperMethod = typeof(QueryableHelpers).GetMethod("SortandPageHelper").MakeGenericMethod(modelType);
Util\FastPropertyAccessor.cs (2)
50_getPropertyMethod = typeof(IWebPropertyAccessor).GetMethod("GetProperty"); 51_setPropertyMethod = typeof(IWebPropertyAccessor).GetMethod("SetProperty");
System.Web.DataVisualization (4)
Common\Converters\AxisConverters.cs (2)
101 MethodInfo methodInfo = context.Instance.GetType().GetMethod("GetAxis"); 170 MethodInfo methodInfo = context.Instance.GetType().GetMethod("GetAxis");
Common\Converters\DataManagerConverters.cs (1)
407 MethodInfo methodInfo = context.Instance.GetType().GetMethod("GetService");
Common\General\Chart.cs (1)
441MethodInfo m = dataSource.GetType().GetMethod("Select");
System.Web.DynamicData (2)
DynamicData\MetaTable.cs (1)
161MethodInfo toStringMethod = EntityType.GetMethod("ToString");
DynamicData\ModelProviders\EFTableProvider.cs (1)
22var genericMethod = DataModel.ContextType.GetMethod("CreateQuery");
System.Web.Extensions (6)
UI\AsyncPostBackTrigger.cs (2)
37_eventHandler = typeof(AsyncPostBackTrigger).GetMethod("OnEvent"); 107MethodInfo handlerMethod = eventInfo.EventHandlerType.GetMethod("Invoke");
UI\WebControls\Dynamic.cs (2)
383gen.EmitCall(OpCodes.Call, ct.GetMethod("get_Default"), null); 408gen.EmitCall(OpCodes.Call, ct.GetMethod("get_Default"), null);
UI\WebControls\Expressions\OfTypeExpression.cs (1)
75return typeof(Queryable).GetMethod("OfType").MakeGenericMethod(new Type[] { type });
UI\WebControls\QueryableDataSourceHelper.cs (1)
66MethodInfo toListMethod = typeof(Enumerable).GetMethod("ToList").MakeGenericMethod(dataObjectType);
System.Web.Mobile (1)
UI\MobileControls\FactoryGenerator.cs (1)
91_methodToOverride = factoryInterface.GetMethod("CreateInstance");
System.Windows.Forms (1)
winforms\Managed\System\WinForms\AxHost.cs (1)
6370return new MethodInfo[] {this.GetType().GetMethod("Move")};
System.Windows.Forms.DataVisualization (4)
Common\Converters\AxisConverters.cs (2)
101 MethodInfo methodInfo = context.Instance.GetType().GetMethod("GetAxis"); 170 MethodInfo methodInfo = context.Instance.GetType().GetMethod("GetAxis");
Common\Converters\DataManagerConverters.cs (1)
407 MethodInfo methodInfo = context.Instance.GetType().GetMethod("GetService");
Common\General\Chart.cs (1)
441MethodInfo m = dataSource.GetType().GetMethod("Select");
System.Workflow.Activities (22)
Common\CompModHelpers.cs (2)
970methodInfo = inheritedInterface.GetMethod(method); 977methodInfo = interfaceType.GetMethod(methodName);
Common\DelegateTypeInfo.cs (1)
65MethodInfo invokeMethod = delegateClass.GetMethod("Invoke");
CorrelationValidator.cs (5)
420methodInfo = delegateType.GetMethod("Invoke"); 534MethodInfo delegateMethod = delegateType.GetMethod("Invoke"); 659method = delegateType.GetMethod("Invoke"); 829MethodInfo mInfo = interfaceType.GetMethod(operation); 854mInfo = delegateType.GetMethod("Invoke");
EventSinkActivity.cs (2)
198MethodInfo methodInfo = eventInfo.EventHandlerType.GetMethod("Invoke"); 466MethodInfo method = delegateType.GetMethod("Invoke");
Executors\InboundActivityHelper.cs (1)
84MethodInfo methodInfo = eventInfo.EventHandlerType.GetMethod("Invoke");
Executors\WorkflowWebService.cs (1)
45MethodInfo mInfo = interfaceType.GetMethod(methodName);
InvokeMethodActivity.cs (2)
168MethodInfo methodInfo = type.GetMethod(methodName); 265MethodInfo method = type.GetMethod(this.MethodName);
InvokeWebService.cs (2)
392MethodInfo method = type.GetMethod(this.MethodName); 452MethodInfo methodInfo = proxyClassType.GetMethod(invokeWebService.MethodName);
LocalService\WorkflowMessageEventHandler.cs (2)
83MethodInfo interceptedHandler = this.eventHandlerType.GetMethod("Invoke"); 95MethodInfo mHandler = typeof(WorkflowMessageEventHandler).GetMethod("EventHandler");
Rules\Helpers.cs (1)
264MethodInfo methodInfo = type.GetType().GetMethod("GetEnumType");
Rules\Literal.cs (1)
482internal static MethodInfo ObjectEquality = typeof(DefaultOperators).GetMethod("ObjectEquality");
WebServiceReceive.cs (1)
296MethodInfo mInfo = interfaceType.GetMethod(operation);
WebServiceResponse.cs (1)
153MethodInfo mInfo = webservicereceive.InterfaceType.GetMethod(webservicereceive.MethodName);
System.Workflow.ComponentModel (9)
AuthoringOM\Bind.cs (1)
781MethodInfo delegateMethod = targetType.GetMethod("Invoke");
AuthoringOM\Compiler\Validation\BindValidator.cs (1)
525MethodInfo invokeMethod = validationBindContext.TargetType.GetMethod("Invoke");
AuthoringOM\Compiler\Validation\DependencyObjectValidator.cs (1)
200MethodInfo invokeMethod = dependencyProperty.PropertyType.GetMethod("Invoke");
AuthoringOM\Serializer\DictionarySurrogate.cs (1)
87MethodInfo addMethod = this.dictionary.GetType().GetMethod("Add");
AuthoringOM\Serializer\GenericQueueSurrogate.cs (1)
64MethodInfo enqueueMethod = this.queue.GetType().GetMethod("Enqueue");
AuthoringOM\Serializer\ListSurrogate.cs (1)
65MethodInfo addMethod = this.list.GetType().GetMethod("Add");
Shared\CompModHelpers.cs (2)
968methodInfo = inheritedInterface.GetMethod(method); 975methodInfo = interfaceType.GetMethod(methodName);
Shared\DelegateTypeInfo.cs (1)
64MethodInfo invokeMethod = delegateClass.GetMethod("Invoke");
System.Workflow.Runtime (1)
System\Activities\Statements\InteropEnvironment.cs (1)
24static MethodInfo getServiceMethod = typeof(NativeActivityContext).GetMethod("GetExtension");
System.Xml (1)
System\Xml\Serialization\Compilation.cs (1)
520MethodInfo method = type.GetMethod(methodName);
WindowsBase (2)
Base\System\ComponentModel\DependencyPropertyDescriptor.cs (2)
169if (ownerType.GetMethod("Get" + dependencyProperty.Name) == null && 170ownerType.GetMethod("Set" + dependencyProperty.Name) == null)