Tagged Questions
5
votes
5answers
4k views
How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)
So what I have right now is something like this:
PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.Public);
where obj is some object.
The problem is some of the properties I want ...
2
votes
1answer
76 views
Filtering out protected setters when type.GetProperties()
I am trying to reflect over a type, and get only the properties with public setters. This doesn't seem to be working for me. In the example LinqPad script below, 'Id' and 'InternalId' are returned ...
2
votes
2answers
247 views
When using reflection to get at properties, How can I limit my search to just the subclass I'm interested in?
After successfully getting a list of specific types out of an assembly using reflection, I now want to get at the public properties of each of those.
Each of these types derives from at least one ...
1
vote
3answers
93 views
How to extract System.Reflection.PropertyInfo names of a class object as first row of a csv file
I'm trying to use System.Reflection to output a first row of column header information for a csv text file before I create the actual generic List from my data source.
public class DocMetaData
{
...
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 ...
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
47 views
Get properties from business object with reflection
How can I get the in my propertyList the Id Property?
I get about 60 Properties I have never heard of...
class Customer
{
public int Id {get;set;}
}
Type type = typeof(Customer);
PropertyInfo[] ...
0
votes
1answer
98 views
IEnumerable.GetProperties()
I have class Foo, which derived from interface IFoo and IEnumerable
public class Foo:IFoo,IEnumerable
{
public decimal Count {...}
///etc...
}
How to call GetProperties(), that it's return ...