Implemented interface member:
method
GetValue
System.Runtime.InteropServices._FieldInfo.GetValue(System.Object)
7 overrides of GetValue
mscorlib (5)
system\reflection\emit\fieldbuilder.cs (1)
129public override Object GetValue(Object obj)
system\reflection\emit\xxxontypebuilderinstantiation.cs (1)
288public override Object GetValue(Object obj) { throw new InvalidOperationException(); }
system\reflection\fieldinfo.cs (2)
734public override Object GetValue(Object obj) 911public unsafe override Object GetValue(Object obj)
system\runtime\serialization\serializationfieldinfo.cs (1)
92public override Object GetValue(Object obj) {
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\FieldInfo.cs (1)
60public override Object GetValue(object obj)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
902public override object GetValue(object obj)
71 references to GetValue
mscorlib (5)
system\object.cs (1)
173val = fldInfo.GetValue(this);
system\rttype.cs (2)
4734Array a = (Array) selFld.GetValue(target); 4756return selFld.GetValue(target);
system\runtime\serialization\serializationfieldinfo.cs (2)
93return m_field.GetValue(obj); 105return m_field.GetValue(obj);
PresentationFramework (7)
src\Framework\MS\Internal\LayoutDump.cs (2)
908object paraClient = field.GetValue(paragraph); 960CellParaClient cellParaClient = (CellParaClient) fieldOfParaClient.GetValue(paragraph);
src\Framework\MS\Internal\SystemDataHelper.cs (1)
78return nullField.GetValue(null);
src\Framework\System\Windows\Input\Command\CommandConverter.cs (1)
160command = fieldInfo.GetValue(null) as ICommand;
src\Framework\System\Windows\Standard\ErrorCodes.cs (2)
361var hr = (HRESULT)publicStaticField.GetValue(null); 376var error = (Win32Error)publicStaticField.GetValue(null);
src\Shared\MS\Internal\WindowsRuntime\ReflectionHelper.cs (1)
290result = fieldInfo.GetValue(obj);
System (3)
compmod\system\componentmodel\AttributeCollection.cs (1)
334attr = (Attribute)field.GetValue(null);
compmod\system\componentmodel\design\serialization\InstanceDescriptor.cs (1)
147return ((FieldInfo)member).GetValue(null);
misc\SecurityUtils.cs (1)
209return field.GetValue(target);
System.Activities (6)
System\Activities\Expressions\ExpressionServices.cs (2)
373variableObject = field.GetValue(memberExpression.Value) as Variable; 520variableObject = field.GetValue(memberExpression.Value) as Variable;
System\Activities\Expressions\FieldReference.cs (1)
108return (TResult)this.fieldInfo.GetValue(this.owner);
System\Activities\Expressions\ValueTypeFieldReference.cs (1)
93return (TResult)this.fieldInfo.GetValue(this.ownerLocation.Value);
System\Activities\ExpressionUtilities.cs (2)
409return (T)this.fieldInfo.GetValue(this.owner); 1611return fieldInfo.GetValue(owner);
System.Data (8)
fx\src\data\Microsoft\SqlServer\Server\SmiContextFactory.cs (1)
125object result = fieldInfo.GetValue(null);
fx\src\data\System\Data\Common\DbProviderFactories.cs (3)
79object factory = providerInstance.GetValue(null); 150object factory = providerInstance.GetValue(null); 196object factory = providerInstance.GetValue(null);
fx\src\data\System\Data\Common\GreenMethods.cs (1)
50result = SystemDataSqlClientSqlProviderServices_Instance_FieldInfo.GetValue(null);
fx\src\data\System\Data\Common\SQLTypes\SqlUDTStorage.cs (1)
52value = fieldInfo.GetValue(null);
fx\src\data\System\Data\Sql\sqlnorm.cs (2)
112this.NullInstance = fi.GetValue(null); 276return fi.GetValue(obj);
System.Data.Entity (1)
System\Data\Objects\ELinq\Funcletizer.cs (1)
733memberValue = ((FieldInfo)me.Member).GetValue(instance);
System.Data.Linq (4)
DataContext.cs (1)
421ITable tb = (ITable)fi.GetValue(schema);
Mapping\Accessors.cs (1)
77return (V)fi.GetValue(instance);
parent\parent\misc\SecurityUtils.cs (1)
209return field.GetValue(target);
SqlClient\Query\SqlBinder.cs (1)
924return sql.Value(m.ClrType, m.SqlType, f.GetValue(val.Value), val.IsClientSpecified, m.SourceExpression);
System.Management (7)
Instrumentation\EventSource.cs (3)
583IntPtr[] objs = new IntPtr[] {(IntPtr)converter.GetType().GetField("instWbemObjectAccessIP").GetValue(converter)}; 807objs[count] = (IntPtr)converter.GetType().GetField("instWbemObjectAccessIP").GetValue(converter); 829objs[count] = (IntPtr) funcs[count].Target.GetType().GetField("instWbemObjectAccessIP").GetValue(funcs[count].Target);
Instrumentation\Instrumentation.cs (4)
350mapTypeToConverter = (Hashtable)dynType.GetField("mapTypeToConverter").GetValue(null); 473 wbemObjects[0] = (IntPtr) fieldInfo.GetValue ( convertFunctionNoBatch.Target ) ; 488 wbemObjects[currentIndex-1] = (IntPtr) fieldInfo.GetValue ( convertFunctionsBatch[currentIndex-1].Target ) ; 572return (IntPtr)o.GetType().GetField("instWbemObjectAccessIP").GetValue(o);
System.Runtime.Serialization (1)
System\Runtime\Serialization\EnumDataContract.cs (1)
320object enumValue = field.GetValue(null);
System.ServiceModel (4)
System\ServiceModel\Description\OperationGenerator.cs (2)
1009object fieldValue = field.GetValue(attribute); 1010object defaultValue = field.GetValue(defaultAttribute);
System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
597return ((FieldInfo)members[index]).GetValue(instance);
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
298bodyPartValues[i++] = field.GetValue(bodyObject);
System.Web (2)
parent\parent\parent\Misc\SecurityUtils.cs (1)
209return field.GetValue(target);
Util\FastPropertyAccessor.cs (1)
392return fieldInfo.GetValue(target);
System.Web.Extensions (2)
UI\WebControls\Dynamic.cs (1)
1586if (memberInfos.Length != 0) return ((FieldInfo)memberInfos[0]).GetValue(null);
UI\WebControls\LinqDataSourceView.cs (1)
378contextData.EntitySet = field.GetValue(contextData.Context);
System.Web.Services (1)
System\Web\Services\Protocols\Scalars.cs (1)
305return ((FieldInfo)memberInfo).GetValue(target);
System.Windows.Forms (4)
misc\SecurityUtils.cs (1)
209return field.GetValue(target);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2IManagedPerPropertyBrowsingHandler.cs (1)
136Object fieldValue = fi.GetValue(null);
winforms\Managed\System\WinForms\FeatureSupport.cs (2)
56featureId = fi.GetValue(null); 91featureId = fi.GetValue(null);
System.Workflow.Activities (1)
Rules\Executor.cs (1)
73return fieldInfo.GetValue(targetObject);
System.Workflow.ComponentModel (6)
AuthoringOM\Bind.cs (3)
102targetObject = (eventArgs.MemberInfo as FieldInfo).GetValue(targetObject); 209obj = (eventArgs.MemberInfo as FieldInfo).GetValue(parentObj); 1049value = (eventArgs.MemberInfo as FieldInfo).GetValue(value);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
904return this.fieldInfo.GetValue(obj);
AuthoringOM\Design\TypeConverters.cs (1)
36DeclarativeConditionDynamicProp = (DependencyProperty)RuleConditionReferenceType.GetField("RuleDefinitionsProperty").GetValue(null);
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (1)
2085dependencyProperty = fieldInfo.GetValue(attachedObj) as DependencyProperty;
System.Workflow.Runtime (1)
Tracking\PropertyHelper.cs (1)
185data.Data = GetRuntimeValue(f.GetValue(activity), activity);
System.WorkflowServices (2)
System\Workflow\Activities\ServiceOperationHelpers.cs (1)
317argumentNames = argumentNamesField.GetValue(attributeInfo) as string[];
System\Workflow\Activities\TypedOperationInfo.cs (1)
249argumentNames = argumentNamesField.GetValue(attributeInfo) as string[];
System.Xml (3)
System\Xml\Serialization\Models.cs (1)
366return new ConstantModel(fieldInfo, ((IConvertible)fieldInfo.GetValue(null)).ToInt64(null));
System\Xml\Xslt\XslCompiledTransform.cs (2)
283byte[] queryData = fldData.GetValue(/*this:*/null) as byte[]; 287Type[] earlyBoundTypes = (Type[])fldTypes.GetValue(/*this:*/null);
UIAutomationClient (1)
MS\Internal\Automation\ProxyManager.cs (1)
89ClientSideProviderDescription[] table = fi.GetValue(null) as ClientSideProviderDescription[];
WindowsBase (2)
Base\MS\Internal\Interop\ErrorCodes.cs (2)
310var hr = (HRESULT)publicStaticField.GetValue(null); 325var error = (Win32Error)publicStaticField.GetValue(null);