Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
3answers
66 views

Java getProperties

The command: System.getProperties().list(System.out); returns the following: sun.cpu.isalist=amd64 I can't understand why it's amd64. I have Lenovo with Intel 3i, Win7 (where the code was ...
2
votes
1answer
66 views

<Type>.GetProperties : get DependencyProperties?

I got a custom Type that as a couple of fields, and I'd like to only get Dependency Properties. Here is the code that returns all properties : propertyInfos = myType.GetProperties(); ...
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
1answer
1k views

Dynamically change properties returned by ICustomTypeDescriptor.GetProperties to readonly

I have a class which implements ICustomTypeDescriptor, and is viewed and edited by the user in a PropertyGrid. My class also has a IsReadOnly property which determines if the user will be able to save ...
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 ...
1
vote
2answers
801 views

Reflection - setting Type of returned obj?

I am populating different types objects with datarows with each attrivute of the relevant object = to the similiarly name field in the datarow. I'd like to use a generic function to do this. How do I ...
0
votes
2answers
105 views

how to get file properties?

I want an application which displays the some file properties of a mediafile if available, like (don't know the exact english words used in windows for it) FileName, Length/Duration, FileType(.avi ...
0
votes
2answers
74 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
181 views

TypeDescriptor.GetProperties return nothing from a class

I have defined a class TestObject that contains two simple properties num and name. I am trying to use TypeDescriptor.GetProperties() for the object of TestObject class to retrieve the defined ...
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 ...