The getproperties tag has no wiki summary.
2
votes
4answers
80 views
Looping through classes, and child classes to retrieve properties and values in C#
I'm trying to loop through a class and it's child classes to get the values passed with it.
Here's my class:
public class MainClass
{
bool IncludeAdvanced { get; set; }
public ChildClass1 ...
3
votes
3answers
196 views
DumpObject with GetFields and GetProperties for instance with nested class
this is my first question in stackoverflow and I am a beginner in using reflection.
I would like to dump all values of an object instance for reference (to keep track about used values on a test). I ...
0
votes
0answers
310 views
Does adding lines to build.prop do anything if those properties don't already exist?
I've been checking current property settings against a build.prop I'm considering using via getprop command in adb shell...
Several of the new settings return no value when I run getprop...so will ...
2
votes
2answers
224 views
How get properties of one class without custom class types
I have a Person class :
public class Person
{
virtual public long Code { get; set; }
virtual public string Title { get; set; }
virtual public Employee Employee { get; set; }
}
...
1
vote
2answers
161 views
How to get properties of a type inside an object
I have this code. I receive several lists as parameters that I insert into a list of objects.
public static void SaveTransactionsToSeparateFiles(List<Receivables> genRecList,
...
0
votes
1answer
144 views
GetValue from list of GetProperties without an instantiated object using reflection
public class SomeClass
{
public IBy Some1{ get { return By.CssSelector("span[id$=spanEarth]"); } }
public IBy Some2 { get { return By.CssSelector("span[id$=spanWorm]"); } }
public IBy ...
-2
votes
2answers
83 views
How to get all or specific properties of a user from a database?
I'm new to grails and I would like to know how to get all the properties of a login user in an application. I've used MYSQL db to store its information such as username, passowrd, address, etc. I ...
1
vote
1answer
177 views
How to take all the properties of a property file as initialized variables inside a java program?
I'm using properties file in my java program.
Currently whenever I'm need of some property from properties file, I'm using propertyFile.getProperty(propertyKeyName);and taking this into some ...
1
vote
1answer
114 views
How many nanoseconds does a call to GetProperties() take?
In relation to: Big-O of .GetProperties()
How many nanoseconds does the .GetProperties() method take in C#?
EDIT
Tested:
On simple dev computer (nothing fancy), item has 8 properties, and no ...
5
votes
2answers
139 views
Big-O of .GetProperties()
If there are n properties, then is the Big-O of .GetProperties O(n) or are there are processes involved in the reflection that add complexity?
Say there is this defined class:
public class Reflector
...
9
votes
3answers
2k 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 ...
3
votes
3answers
307 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 ...
0
votes
2answers
3k 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 ...
3
votes
1answer
631 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
476 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 ...
0
votes
2answers
265 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()) ...
1
vote
3answers
907 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
{
...
0
votes
1answer
485 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
234 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 ...
2
votes
1answer
2k 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 ...
3
votes
2answers
376 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 ...
2
votes
1answer
4k 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
1k 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 ...
8
votes
5answers
8k 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 ...

