The propertyinfo tag has no wiki summary.
1
vote
0answers
22 views
Difference between GetGetMethod method and GetMethod property?
.Net 4.5 has PropertyInfo.GetMethod as a property on PropertyInfo class. Is it doing anything different from PropertyInfo.GetGetMethod method? The documentation page is virtually blank. The only ...
2
votes
1answer
51 views
What are GetField, SetField, GetProperty and SetProperty in BindingFlags enumeration?
I have no idea what these are for. The documentation is not very clear:
GetField Specifies that the value of the specified field should be returned.
SetField Specifies that the value of the ...
0
votes
2answers
79 views
.Net Reflection Property Info of a PropertyInfo
I have a class structure like below,
Class A
{
ClassB objB {get; set;}
int data {get; set;}
}
Class B
{
int x {get; set;}
int data {get; set;}
}
Now I need to use reflection on ...
3
votes
1answer
72 views
Why is a member of base class different from the same member in derived class?
This is a followup to this question: Lambda expression not returning expected MemberInfo
class Human
{
public string name { get; set; }
}
class Man : Human
{
}
var m1 = ...
0
votes
0answers
20 views
Different refresh result while setting FrameworkElement PropertyInfo in two different ways
Sample code to change displayed "text" of a Framework Element:
//FrameworkElement c as input retrieved via VisualTree/LogicalTree-helper
// SearchKey does something not important
var x = ...
0
votes
2answers
71 views
C# Reflection, how to get property instance within class to setvalue
I'd like to reset the properties of a class back to their default values within a method of the class. My class is instantiated once (is actually a ViewModel in an MVVM framework) and I don't want to ...
0
votes
5answers
229 views
Create new PropertyInfo object on the fly
This is my very first post, and although I have searched in topics related to my issue to some extent, I'm having a lot of trouble finding the proper answer.
My question may be very simple, but I'm ...
1
vote
0answers
112 views
KSOAP and web server communication (PropertyInfo)
So I'm developing an Android app that should connect to a web service. This connection is working fine. I've tested it using a simple method that returns "Hello Christian". This is displayed correct ...
3
votes
2answers
95 views
Generic class instance with type from PropertyInfo.PropertyType
I have classes like below:
public class SampleClassToTest<T>
{
public static Fake<T> SomeMethod(string parameter)
{
// some code
}
public static Fake<T> ...
1
vote
0answers
88 views
PropertyInfo GetCustomAttributes returning 0 objects
So this is my first time asking here, pls bear with me.
I'm trying to learn how to attach attributes to my objects, but I'm having trouble retrieving them.
So here's my attribute class:
...
0
votes
1answer
188 views
Calling web service from Android App returns null object
I'm writing an Android App that communicates with an web service using KSOAP. The connection between web service and Android app is working as I can call the webservice and get a return value (hello). ...
2
votes
3answers
93 views
How to get the property that has a DataMemberAttribute with a specified name?
How can I reflectively get the property that has the DataMember with a given name (let's assume every DataMember has a unique name)? For example, in the following code the property with the DataMember ...
0
votes
0answers
86 views
looping through nested object properties in c#
I have an objects like this
public class WEntity
{
string exStirng;
public string EtcStirng
{
get { return exStirng; }
set { exStirng = value; }
...
0
votes
1answer
321 views
PropertyInfo.GetValue(object obj, object[] index) throwing 'Target' exception
I need a generic list with extended search mechanism, so i have created a generic list (base List<T>) with an addirional indexer. So in this, if T is an object, then the list allows to fetch the ...
1
vote
2answers
79 views
Equality for .NET PropertyInfos
I have some code that compares 2 PropertyInfos with Equals(). While this normally seems to work, I have run into a strange situation where two reflected property info objects for the same underlying ...
2
votes
1answer
179 views
Merge two objects of the same class that has nested classes
I have a few classes delivered by someone else that are used for serialization.
Those classes are constructed with a number of parameters that have a default value.
I need to have them initiated with ...
2
votes
3answers
137 views
Foreach change property. What is PropertyInfo?
I have been reading over old questions asked ans searching MSDN help but I cant really understand what a PropertyInfo is, specifically relating to the question of looping through an array list
c# ...
0
votes
0answers
42 views
Win7 Property System
I try to implement property "Latitude" as column in Windows explorer (Windows 7).
Please help me to understand how i can implement custom range selection like as "Size" in Windows Explorer?
In my ...
1
vote
2answers
164 views
Getting byte[] from PropertyInfo returns NULL
I'm trying to get a Byte[] using reflection. Unfortunately the result it always NULL. The property is filled with data. Here's my code snippet.
public static void SaveFile(BusinessObject document)
{
...
2
votes
1answer
423 views
Why are PropertyInfo SetValue and GetValue so slow?
Why is the PropertyInfo methods for getting and setting a property so slow? If I build a delegate using Reflection.Emit, it is much faster.
Are they doing something important, so that the time they ...
0
votes
1answer
106 views
VB.NET - How to get Assembly from PropertyInfo?
I need to be able to dynamically instantiate an object using reflection. I have a PropertyInfo at this point and need to get the Assembly of this object before I can call the CreateInstance method.
...
0
votes
1answer
29 views
How to know if PropertyInfo is MEF import
Suppose I have a class as follows where MyProperty is composed in by MEF:
class Foo
{
[Import]
public Bar MyProperty { get; set; }
}
While using reflection to inspect this assembly, is it ...
2
votes
3answers
251 views
Populate an Enum array via reflection
I have a method that reads some XML and populates an object. This is done via reflection based on the element names in the XML mathing the property names on the object. This works for basic object ...
2
votes
1answer
600 views
How to set Vaues to the Nested Property using C# Reflection.?
I am trying to set a value to a Nested Property of Class dynamically using reflection. Could anyone help me to do this.
I am having a class Region like below.
public class Region
{
public int ...
2
votes
1answer
207 views
[Delegate].CreateDelegate to set property performance
This is a serializer I've been working on that serializes datarow's into objects based on some mapped property attributes. I read a number of posts related to using [Delegate].CreateDelegate to ...
0
votes
2answers
829 views
how to make a ksoap2 request with multiple property in android?
I must make the following soap request, but we can not succeed, I tried in several ways and fails, I always get a blank field in response.
Request should look like this:
POST /service.asmx HTTP/1.1
...
-1
votes
1answer
96 views
update data using java code in android
if i have to insert the data in mysql database means we are use below code:
PropertyInfo unameProp =new PropertyInfo();
unameProp.setName("userName");//Define the variable name in the web service ...
0
votes
2answers
65 views
Find custom type in Object
I have a Upload class with different properties and I like to find each UploadObject property in this class or inside of other propertys. How can i find all UploadObjects in my Upload class?
class ...
0
votes
0answers
97 views
A Property Set by PropertyInfo SetValue Not Serializing
Any idea why a property that has it's value set via PropertyInfo.SetValue doesn't serialize (XmlSerializer). When I print the value out or inspect it through the debugger, it appears to be set ...
0
votes
2answers
198 views
How to create static bindable property description object
To make sure that a binding in WPF is targeting an existing property, I'm using static property-name-properties.
Now I wan't to encapsulate more info about my properties into a static property ...
0
votes
0answers
78 views
Fetching property value from child class and add it to dest object c#
Im new here, I really hop that someone can help me with this problem that I have.
I have a static method that has two in params one that is source object that conatins all info and a destination ...
2
votes
2answers
810 views
How to create a lambda expression that can handle or cast unknown types?
How do you create a lambda expression for a function that can handle unknown types? Sorry, I know the question is vague and I had a hard time forming it. I can only hope you have a minute and read ...
0
votes
6answers
499 views
Getting property name and distinct values of a type T from a List<T> with reflection
I have a class Product with a set of properties:
public class Product
{
public string Id { get; set; }
public string Name { get; set; }
public string Categories { get; set; }
}
From ...
2
votes
5answers
298 views
Pass Property to the Method in C#
I need to pass selection of properties of some types(one type each time), assume this is my type:
public class Product {
[PrimaryKey]
public long Id { get; set; }
[DisplayName("Name")]
...
0
votes
1answer
236 views
Possible to test a cast to PropertyInfo.PropertyType when object implements implicit operator?
I have an object of a certain type (SpecialImage) which implements an implicit operator to another type (Image).
SpecialImage does not derive from Image. However the following is possible through ...
2
votes
2answers
1k views
Property set method not found in a derived type
As disgussed in .NET Reflection set private property one can set a property with a private setter. But when the property is defined in a base class, System.ArgumentException is thrown : "Property set ...
0
votes
2answers
334 views
System.Reflection, how to get field & property position?
Question: I use the below class to serialize a csv file to
List<MyCsvFileType>
Then I convert the List<MyCsvFileType> to a datatable using
MyConvertTo
(listed below as ...
6
votes
2answers
2k views
C# Setting value in an array via reflection
Is there a way to set a single value in an array property via reflection in c#?
My property is defined like this:
double[] Thresholds { get; set; }
For "normal" properties I use this code ...
0
votes
1answer
62 views
ToolStripProgressBar RightToLeftLayout Set Property issue
Here I'm trying to set the RIghtToLeftLayout property of ToolStripProgressBar, when i try to set the value either true or false, I'm getting this error.....
at ...
0
votes
3answers
673 views
How can I recursively search properties in C# only if those properties inherit from some base class?
How can I recursively get all the properties of an object only if the type of the property inherits from some base class?
This was my attempt:
static IEnumerable<PropertyInfo> ...
1
vote
1answer
271 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 ...
3
votes
3answers
409 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 ...
2
votes
3answers
671 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 ...
4
votes
1answer
1k 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 ...
1
vote
1answer
156 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 ...
0
votes
1answer
755 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; }
...
1
vote
5answers
140 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
579 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
273 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", ...
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()) ...


