Implemented interface member:
method
SetValue
System.Runtime.InteropServices._PropertyInfo.SetValue(System.Object, System.Object, System.Object[])
4 overrides of SetValue
mscorlib (2)
system\reflection\emit\propertybuilder.cs (1)
191public override void SetValue(Object obj,Object value,Object[] index)
system\reflection\propertyinfo.cs (1)
635public override void SetValue(Object obj, Object value, Object[] index)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1838public override void SetValue(object obj, object value, object[] index) { _info.SetValue(obj, value, index); }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1838public override void SetValue(object obj, object value, object[] index) { _info.SetValue(obj, value, index); }
50 references to SetValue
mscorlib (2)
system\diagnostics\eventing\eventsource.cs (1)
3193p.SetValue(attr, value, null);
system\reflection\propertyinfo.cs (1)
120SetValue(obj, value, null);
PresentationFramework (1)
src\Framework\MS\Internal\Data\PropertyPathWorker.cs (1)
367pi.SetValue(item, value, null);
System (1)
compmod\system\componentmodel\ComponentResourceManager.cs (1)
175prop.SetValue(value, kvp.Value, null);
System.Activities (4)
System\Activities\ActivityUtilities.cs (1)
377genericVariableReferenceType.GetProperty("Variable").SetValue(variableReference, variable, null);
System\Activities\Expressions\PropertyReference.cs (1)
162this.propertyInfo.SetValue(this.owner, value, null);
System\Activities\Expressions\ValueTypePropertyReference.cs (1)
156this.propertyInfo.SetValue(copy, value, null);
System\Activities\ExpressionUtilities.cs (1)
837this.propertyInfo.SetValue(this.owner, value, null);
System.Activities.Core.Presentation (3)
System\Activities\Core\Presentation\FlowchartDesigner.Container.cs (1)
534propertyInfo.SetValue(clonedObject, propertyInfo.GetValue(flowElement, null), null);
System\Activities\Core\Presentation\TryCatchDesigner.xaml.cs (2)
345catchType.GetProperty(PropertyNames.Action).SetValue(catchObject, activityAction, null); 346activityActionType.GetProperty(PropertyNames.ActionArgument).SetValue(activityAction, exceptionArgument, null);
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\ActivityDelegateUtilities.cs (1)
55activityDelegate.GetType().GetProperty(argument.Name).SetValue(activityDelegate, CreateDelegateArgument(argument), null);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1838public override void SetValue(object obj, object value, object[] index) { _info.SetValue(obj, value, index); }
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1092this.indexingProperty.SetValue(this.instance, value, new object[] { key });
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1838public override void SetValue(object obj, object value, object[] index) { _info.SetValue(obj, value, index); }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1092this.indexingProperty.SetValue(this.instance, value, new object[] { key });
System.Data.Entity.Design (3)
System\Data\Entity\Design\EntityCodeGenerator.cs (3)
630_referenceCsdlPaths.SetValue(_instance, value, null); 642_sourceCsdlPath.SetValue(_instance, value, null); 648set { _edmToObjectNamespaceMap.SetValue(_instance, value, null); }
System.Data.Linq (3)
SqlClient\SqlTypeSystemProvider.cs (3)
987piSqlDbType.SetValue(parameter, sqlType.SqlDbType, null); 992piPrecision.SetValue(parameter, Convert.ChangeType(sqlType.Precision, piPrecision.PropertyType, CultureInfo.InvariantCulture), null); 996piScale.SetValue(parameter, Convert.ChangeType(sqlType.Scale, piScale.PropertyType, CultureInfo.InvariantCulture), null);
System.Data.Services.Client (1)
System\Data\Services\Client\Util.cs (1)
471property.SetValue(collection, continuation, null);
System.ServiceModel (3)
System\ServiceModel\Configuration\ConfigurationHelpers.cs (1)
307elementPresent.SetValue(element, value, null);
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
606((PropertyInfo)members[index]).SetValue(instance, value, null);
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
361property.SetValue(bodyObject, bodyPartValues[i++], null);
System.Web (1)
Util\FastPropertyAccessor.cs (1)
429propInfo.SetValue(target, val, null);
System.Web.DataVisualization (2)
Common\Utilities\XmlSerializer.cs (2)
2198 pi.SetValue(obj, objValue, null); 3209 pi.SetValue(obj, objValue, null);
System.Web.DynamicData (1)
DynamicData\DynamicControl.cs (1)
202propInfo.SetValue(FieldTemplate, value, null);
System.Web.Entity (2)
System\Data\WebControls\EntityDataSourceMemberPath.cs (2)
129this.propertyInfo.SetValue(parentObjectValue, value, new object[] { }); 141this.propertyInfo.SetValue(parentObjectValue, propertyValue, new object[] { });
System.Web.Services (2)
System\Web\Services\Protocols\PatternMatcher.cs (1)
75((PropertyInfo)memberInfo).SetValue(target, matchType == null ? MatchString(text) : MatchClass(text), new object[0]);
System\Web\Services\Protocols\Scalars.cs (1)
299((PropertyInfo)memberInfo).SetValue(target, value, emptyObjectArray);
System.Windows.Forms.DataVisualization (2)
Common\Utilities\XmlSerializer.cs (2)
2198 pi.SetValue(obj, objValue, null); 3209 pi.SetValue(obj, objValue, null);
System.Workflow.Activities (1)
Rules\Executor.cs (1)
149propertyInfo.SetValue(targetObject, value, indexerArguments);
System.Workflow.ComponentModel (10)
AuthoringOM\Bind.cs (1)
242(memberInfo as PropertyInfo).SetValue(parentObj, value, args);
AuthoringOM\Compiler\TypeSystem\AttributeInfo.cs (1)
128attributeType.GetProperty(propertyNames[loop]).SetValue(attribute, propertyValues[loop], null);
AuthoringOM\Design\XomlDesignerLoader.cs (1)
724args.CurrentProperty.SetValue(args.CurrentPropertyOwner, updatedType, null);
AuthoringOM\Serializer\ModifyActivitiesPropertyDescriptor.cs (1)
72this.propInfo.SetValue(component, true, null);
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (6)
1437extendedProperty.RealPropertyInfo.SetValue(extendee, value, null); 1626pi.SetValue(obj, value, null); 1895property.SetValue(obj, propValue, null); 2019property.SetValue(obj, memberValue, null); 2924this.contentProperty.SetValue(this.parentObject, contentPropertyValue, null); 3074this.contentProperty.SetValue(this.parentObject, content, null);
System.Workflow.Runtime (3)
System\Activities\Statements\Interop.cs (1)
507property.SetValue(activity, this.metaProperties[name], null);
System\Activities\Statements\InteropExecutor.cs (1)
484propertyInfo.SetValue(rootActivity, input.Value, null);
WorkflowExecutor.cs (1)
374propertyInfo.SetValue(this.rootActivity, namedInArguments[arg], null);