Tagged Questions
5
votes
2answers
99 views
Get properties in order of declaration using reflection
I need to get all the properties using reflection in the order in which they are declared in the class. According to MSDN the order can not be guaranteed when using GetProperties()
The ...
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
83 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
87 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 ...
1
vote
3answers
107 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
3k 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
828 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
128 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
81 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
51 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[] ...