The bindingflags tag has no wiki summary.
1
vote
3answers
50 views
How to exclude static property when using GetProperties method
I was wonder if I can exclude static property when I'm using GetProperties() to extract all the property for a specific class. I'm aware of using BindingFlags for this to filter properties what I need ...
-2
votes
1answer
123 views
Proper use of Reflection and binding flags
I want to modify the below code to be able to use a private method
//use reflection to Load the data
var method =
typeof(MemberDataFactory)
...
0
votes
4answers
247 views
How get properties for a inherits class by this condition
I have a Person class that inherits PersonBase and this second class inherits EntityBase:
public class Person : PersonBase
{
virtual public string FirstName { get; set; }
virtual public ...
1
vote
1answer
183 views
Get ReturnParameter's Name property of a RuntimeMethodInfo object using Reflection (C#)
Suppose i have the following class in C#:
public class B : A
{
public Int32 B_ID;
public String B_Value;
public Int32 getID()
{
return B_ID;
}
public void ...
0
votes
3answers
79 views
Filter “own members” with BindingFlags
I got the following code :
public class PluginShape : INotifyPropertyChanged
{
private string _Name;
public string Name
{
get { return _Name; }
set
{
...
9
votes
5answers
16k views
C# GetType().GetFields problem
I am using the Reflection classes in order to get all the fields inside a certain object.
My problem however is that it works perfectly when the fields are inside a normal class, like:
class test
{
...
29
votes
3answers
6k views
BindingFlags.IgnoreCase not working for Type.GetProperty()?
Imagine the following
A type T has a field Company.
When executing the following method it works perfectly:
Type t = typeof(T);
t.GetProperty("Company")
Whith the following call I get null though
...