1 write to methodInfo
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1064this.methodInfo = methodInfo;
21 references to methodInfo
System.Workflow.ComponentModel (21)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (21)
1068get { return this.methodInfo.Module; } 1072return this.methodInfo.GetMethodBody(); 1076get { return this.methodInfo.MetadataToken; } 1080get { return this.methodInfo.CallingConvention; } 1084get { return new RTParameterInfoWrapper(this.rtTypeWrapper, this, this.methodInfo.ReturnParameter); } 1088return this.methodInfo.GetBaseDefinition(); 1094return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.methodInfo.ReturnType); 1099get { return this.methodInfo.ReturnTypeCustomAttributes; } 1103get { return this.methodInfo.Attributes; } 1107return this.methodInfo.GetMethodImplementationFlags(); 1114foreach (ParameterInfo parameter in this.methodInfo.GetParameters()) 1115parameters.Add(new RTParameterInfoWrapper(this.rtTypeWrapper, this.methodInfo, parameter)); 1122return this.methodInfo.Invoke(obj, invokeAttr, binder, parameters, culture); 1126get { return this.methodInfo.MethodHandle; } 1133return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.methodInfo.DeclaringType); 1138return this.methodInfo.GetCustomAttributes(attributeType, inherit); 1142return this.methodInfo.GetCustomAttributes(inherit); 1146return this.methodInfo.IsDefined(attributeType, inherit); 1150get { return this.methodInfo.MemberType; } 1154get { return this.methodInfo.Name; } 1160return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.methodInfo.ReflectedType);