1 write to propertyInfo
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
952this.propertyInfo = propertyInfo;
20 references to propertyInfo
System.Workflow.ComponentModel (20)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (20)
957get { return this.propertyInfo.Attributes; } 962get { return this.propertyInfo.CanRead; } 967get { return this.propertyInfo.CanWrite; } 972foreach (MethodInfo methodInfo in this.propertyInfo.GetAccessors(nonPublic)) 978MethodInfo methodInfo = this.propertyInfo.GetGetMethod(nonPublic); 988foreach (ParameterInfo parameter in this.propertyInfo.GetIndexParameters()) 989parameters.Add(new RTParameterInfoWrapper(this.rtTypeWrapper, this.propertyInfo, parameter)); 996MethodInfo methodInfo = this.propertyInfo.GetSetMethod(nonPublic); 1003return this.propertyInfo.GetValue(obj, invokeAttr, binder, index, culture); 1007get { return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.propertyInfo.PropertyType); } 1011this.propertyInfo.SetValue(obj, value, invokeAttr, binder, index, culture); 1015get { return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.propertyInfo.DeclaringType); } 1019return this.propertyInfo.GetCustomAttributes(attributeType, inherit); 1023return this.propertyInfo.GetCustomAttributes(inherit); 1027return this.propertyInfo.IsDefined(attributeType, inherit); 1031get { return this.propertyInfo.MemberType; } 1035get { return this.propertyInfo.Name; } 1039get { return this.rtTypeWrapper.ResolveTypeFromTypeSystem(this.propertyInfo.ReflectedType); } 1043get { return this.propertyInfo.MetadataToken; } 1048get { return this.propertyInfo.Module; }