Tagged Questions
The propertyinfo tag has no wiki summary.
24
votes
8answers
8k views
C# - setting a property by reflection with a string value
I'd like to set a property of an object through reflection, with a value of type string.
So, for instance, suppose I have a Ship class, with a property of Latitude, which is a double.
Here's what I'd ...
10
votes
2answers
170 views
Is there a way to set properties on struct instances using reflection?
I'm trying to write some code that sets a property on a struct (important that it's a property on a struct) and it's failing:
System.Drawing.Rectangle rectangle = new System.Drawing.Rectangle();
...
10
votes
3answers
1k views
Finding the hosting PropertyInfo from the MethodInfo of getter/setter
I do some type analysis in runtime using Reflection. If I have a MethodInfo instance,
how can I figure out if this is a "real" method or is a getter/setter method of a property? And if it is a ...
6
votes
3answers
1k views
How to tell if a PropertyInfo is of a particular enum type?
I have the following code:
public class DataReader<T> where T : class
{
public T getEntityFromReader(IDataReader reader, IDictionary<string, string> FieldMappings)
{
T ...
6
votes
1answer
3k views
Get the default PropertyDescriptors for a type
I'm customizing how an object type is displayed in a PropertyGrid by implementing ICustomTypeDescriptor. I'm allowing the user to create their own custom properties that are stored in a single ...
5
votes
1answer
231 views
PropertyInfo : is the property an indexer?
I have the following code :
PropertyInfo[] originalProperties = myType.GetProperties();
I want to exclude from originalProperties all the indexers (myVar["key"] appears as property named "Item").
...
4
votes
3answers
911 views
Ignore collection properties in PropertyInfo
I have a function with this code:
foreach (PropertyInfo propertyInfo in typeof(T).GetProperties()){
//SOME CODE
if (propertyInfo.CanWrite)
propertyInfo.SetValue(myCopy, propertyInfo.GetValue(obj, ...
4
votes
2answers
1k views
Why is TargetInvocationException treated as uncaught by the IDE?
I have some code that is using reflection to pull property values from an object. In some cases the properties may throw exceptions, because they have null references etc.
object ...
4
votes
2answers
12k views
PropertyInfo.GetValue() “Object does not match target type.”
I'm digging into Reflection for the first time and I'm truely stuck. I've googled everything I can think of. I'm 90% where I wanna be now.
I'm trying to return the value of a Property in a custom ...
3
votes
3answers
135 views
How to differentiate between value-type, nullable value-type, enum, nullable-enum, reference-types through reflection?
How to differentiate between value-type, nullable value-type, enum, nullable-enum, reference-types through reflection?
enum MyEnum
{
One,
Two,
Three
}
class ...
3
votes
4answers
868 views
Get string name of property using reflection
There is a whole wealth of reflection examples out there that allow you to get either:
1. All properties in a class
2. A single property, provided you know the string name
Is there a way (using ...
3
votes
2answers
1k views
Reflecting on property to get attributes. How to do when they are defined elsewhere?
I have a class Bar like this:
class Foo : IFoo {
[Range(0,255)]
public int? FooProp {get; set}
}
class Bar : IFoo
{
private Foo foo = new Foo();
public int? FooProp { get { return ...
2
votes
3answers
68 views
Loop on GetFields and GetProperties of a Type?
Here is my code :
var fields = type.GetFields(BindingFlags.Public | BindingFlags.Instance);
foreach (FieldInfo field in fields)
{
//some code
}
var props = type.GetProperties();
foreach ...
2
votes
1answer
101 views
Get DisplayAttribute attribute from PropertyInfo
class SomeModel
{
[Display(Name = "Quantity Required")]
public int Qty { get; set; }
[Display(Name = "Cost per Item")]
public int Cost { get; set; }
}
I'm trying to map the model ...
2
votes
3answers
371 views
Reflection - get attribute name and value on property
I have a class, lets call it Book with a property called Name. With that property, I have an attribute associated with it.
public class Book
{
[Author("AuthorName")]
public string Name
{
...
2
votes
3answers
122 views
C# - Are FieldInfo and PropertyInfo Immutable or Mutable?
Basically, I have the following:
protected static readonly FieldInfo SpecialField = FindSpecialField();
FxCop is complaining to me though that I should not make a field readonly if it is mutable ...
2
votes
1answer
156 views
query properties of an object with linq
I want to scan a type for it's properties and the annotated attributes and return an object with the following structure
public class PropertyContext
{
public object PropertyValue { get; set; }
...
2
votes
5answers
384 views
C# convert reflection.propertyinfo to Generic.List<>
How do I go about converting a reflection.propertyinfo[] to a generic.list<>?
2
votes
1answer
298 views
PropertyInfo GetValue throwing error during recursion
I am getting "Object does not match target type" when I try to retrieve the value of a object at runtime in my C# program.
public void GetMyProperties(object obj)
{
foreach(PropertyInfo pinfo in ...
2
votes
3answers
2k views
Non-static method requires a target in PropertyInfo.SetValue
Ok, so I'm learning about generics and I'm trying to make this thing run, but its keep saying me the same error. Here's the code:
public static T Test<T>(MyClass myClass) where T : MyClass2
...
2
votes
2answers
147 views
Is there any way to get the PropertyInfo from the getter of that property?
Is there any way I can get the PropertyInfo for a property from its getter? Like this:
public object Foo
{
get
{
PropertyInfo propertyInfoForFoo = xxx;
...
}
}
I want to ...
1
vote
1answer
50 views
SetValue on property doesn't update object
I cannot figure out why this is not working. Can anyone explain to me why SetValue does not set the value of my object's properties?
T row = new T();
foreach (PropertyInfo property in ...
1
vote
1answer
56 views
System.Windows.PropertyPath - can this class help me with reflection on deep-nested properties (types)?
I've been sitting lately on the topic of Reflection, mainly with the purpose of instantiating a New class and setting properties on fields.. By path...
Where, for example I might have a class called ...
1
vote
5answers
90 views
How can I reach the “object” behind a property with reflection?
Is there a way to obtain the object behind a property by reflection?
I am trying to manage a dynamic setting of a property.
Example:
class Animal
{
public string Name {get;set;}
public string ...
1
vote
1answer
110 views
PropertyInfo SetValue Type Conversion
I have a problem with method UniversalConverter. Row received from database should be transferred in to entity. So row[pi.Name] must be converted in to entity type. How to perform this?
public void ...
1
vote
5answers
86 views
Can an extension method be added to a class property to get the value of an attribute associated with the property?
I have several classes with attributes assigned to them. The one I'm mostly interested in is the FieldLength.MaxLength value.
/// <summary>
/// Users
/// </summary>
[Table(Schema = "dbo", ...
1
vote
1answer
204 views
Reflection with IQueryable
I'm playing around and trying to make an extension method for IQueryable that sorts it by an arbitrary property of a object.
public static class IQueryableExtender
{
public static ...
1
vote
1answer
286 views
PropertyInfo.SetValue(object obj, object val, object[] index) property value doesn't change on changing “object val”
I have come across a very weird problem. I am trying to set a property of a particular object assigning it a value of another project via
/* PropertyInfo.SetValue(object obj, object val, object[] ...
1
vote
1answer
222 views
Ksoap Blackberry PropertyInfo.setValue
so i im using the PropertyInfo to pass complex objects in my soap request, and its working fine on android, sample :
PropertyInfo pi = new PropertyInfo();
pi.name = "envelope";
...
1
vote
1answer
691 views
PropertyInfo.GetValue(myObject, null).GetType() returns “Object reference not set to an instance of an object.”
I'm trying to convert a MembershipUserCollection to a DataSet to be used in a GridView and I have this helper class that will loop through all the membership rows and properties and get the values and ...
1
vote
2answers
520 views
How to pass a list of unknown objects of type custom-class containing some properties to method?
I am making a databasehelper class with methods to access a SQLCE database. I want to use the same method to read row(s) using different classes containing properties that match the fields in the ...
1
vote
2answers
2k views
Using reflection read properties of an object containing array of another object
How can I read the properties of an object that contains an element of array type using reflection in c#. If I have a method called GetMyProperties and I determine that the object is a custom type ...
1
vote
2answers
201 views
Reflection and complex properties
I have an object with primitive and complex properties.
I have to get property values by reflection.
I use this statements:
Dim propertyInfo As PropertyInfo = ...
1
vote
2answers
191 views
How do I determine if a property was overriden?
Hello I am doing a project that where I need to register all the properties, because of the system being so huge it would require a lot of work to register all the properties that i want to be ...
1
vote
1answer
76 views
get_PropertyName()/set_PropertyName() vs PropertyName?
I'm using reflection on the assembly of a public API I am working with along with System.CodeDOM to generate some code that will extract information through the API.
In part of my auto-generated code ...
1
vote
2answers
600 views
Reflection failed for properties on anonymous types in Silverlight
I'm using Silverlight 4 with VS 2010 and trying to do reflection on anonymous type and I got some "Attempt by method '...' to access method '...' failed.". I tried various workarounds for this but I ...
1
vote
1answer
409 views
Reflection PropertyInfo.GetValue from Collection
I have problem with reflection, dynamic invoking objects and reading collection values.
In Referenced COM/Interop it would look like this:
ICollection collection = ...
1
vote
3answers
865 views
How to get the default value of an object property?
Some code:
foreach (System.Reflection.PropertyInfo pi in myObject.GetType().GetProperties())
{
if (pi.CanWrite)
{
object value = ...
1
vote
2answers
251 views
How would I know if a property is a generic collection
I need to know if the type of a property in a class is a generic collection (List, ObservableCollection) using the PropertyInfo class.
foreach (PropertyInfo p in (o.GetType()).GetProperties())
{
...
1
vote
1answer
2k views
Reflection - getting properties of nested objects
refers to : http://stackoverflow.com/questions/906327/reflection-setting-type-of-returned-obj
I have a object Call Jobcard with a few properties, one of which is another object called Customer with ...
1
vote
3answers
1k views
c# How do you get the base.Name from PropertyInfo
I am stepping though some code and looking at a PropertyInfo object and want to know how to get its base.Name
I can see this in the debugger but I am not sure how to do this as there is no "base" ...
0
votes
1answer
92 views
how to set name property dynamically in display attributes in silverlight 4
I want to give name property dynamically in the display attributes for any property.
for exam:
[Display(Name = "Test")]
public bool Task1
{
get { return this.m_Task1; }
...
0
votes
2answers
75 views
How can I access an object's property from the PropertyInfo?
When I foreach through an object's properties and end up with a PropertyInfo, how can I access the actual property of the object?
@foreach(var propertyInfo in Model.Entity.GetType().GetProperties()) ...
0
votes
2answers
157 views
.NET PropertyInfo.SetValue seemingly ignoring my commands
As the topic suggests I have some problems with PropertyInfo.SetValue. To get to the point, here is my example - I have created my own class and the main thing about it is the presentation object:
...
0
votes
1answer
72 views
using PropertyInfo to assign a value to a wrapper class with a custom indexer
I need to assign a value via PropertyInfo.
I'm having some problems when the type of the property is my custom class (a wrapper around a dictionary, designed to contain multiple language versions of ...
0
votes
1answer
90 views
Is this an Indexed Property, yea or nea?
I'm trying to get the current machineKey that is being used to encrypt/decrypt my ViewState, etc. in an attempt to debug another issue. (My app is in a server farm and there are machine keys set in ...
0
votes
3answers
117 views
how to get the “class type” of a property in a class through reflection?
here is a piece of code
public class Order
{
//Primary Key
public long OrderId { get; set; }
//Many to One Relationship
[ParentObject("PersonId")]
public Person Buyer { ...
0
votes
2answers
139 views
Getting value of an AutoProperty that has no getter using PropertyInfo.GetValue
I am trying to get the value of a string property in a unit test. The problem is that the property has no getter. The property is also declared as an AutoProperty and has no backing field.
I am ...
0
votes
1answer
90 views
One method to read parameters, properties and return types at runtime using C#
With continutation to my earlier thread Using reflection read properties of an object containing array of another object. I am hoping to make this wonderful method from EvgK a generic method that can ...
0
votes
1answer
43 views
Reflection on Properties for highest level one
class CBase
{
object A {get;set;}
object B {get;set;}
}
class CDerived : CBase
{
object X {get;set}
object Y {get;set;}
}
I'm trying to get first level properties. For the example above, ...