1 write to ctorInfo
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
806this.ctorInfo = ctorInfo;
14 references to ctorInfo
System.Workflow.ComponentModel (14)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (14)
810return this.ctorInfo.Invoke(invokeAttr, binder, parameters, culture); 814get { return this.ctorInfo.Attributes; } 818return this.ctorInfo.GetMethodImplementationFlags(); 825foreach (ParameterInfo parameter in this.ctorInfo.GetParameters()) 826parameters.Add(new RTParameterInfoWrapper(this.rtTypeWrapper, this.ctorInfo, parameter)); 833return this.ctorInfo.Invoke(obj, invokeAttr, binder, parameters, culture); 837get { return this.ctorInfo.MethodHandle; } 841get { return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.ctorInfo.DeclaringType); } 845return this.ctorInfo.GetCustomAttributes(attributeType, inherit); 849return this.ctorInfo.GetCustomAttributes(inherit); 853return this.ctorInfo.IsDefined(attributeType, inherit); 857get { return this.ctorInfo.MemberType; } 861get { return this.ctorInfo.Name; } 865get { return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.ctorInfo.ReflectedType); }