Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
3k 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 ...
3
votes
4answers
108 views

Convert to a Type on the fly in C#.NET

I want to to convert an Object to a type that will be assigned at runtime. For example, assume that I have a function that assigns a string value(from a TextBox or Dropdownlist) to an ...
3
votes
1answer
105 views

Getting an interface from GetPropValue

I want to dynamically get a property value from an object instance. I was able to get the class properties, ordinal types and strings. The delphi source of the GetPropValue does not support ...
2
votes
1answer
363 views

Android KSoap2 how to get property name

I am using KSoap2 for calling web-services for my Android app. I am using following code tto call the web-service. SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); ...
1
vote
3answers
80 views

Purpose and usage of “application.path” variable

In the Play! framework source for the main method in Server.java I found these two lines: File root = new File(System.getProperty("application.path")); if (System.getProperty("precompiled", ...
1
vote
4answers
78 views

Using System.getProperty as a condition

Is it OK to use xxx.equals(System.getProperty(key)) as a condition? Or Am I supposed to use the properties for some other purposes? I have been reading these; ...
0
votes
0answers
102 views

Active Directory Extension Attribute 5 proptag (PropertyAccessor.GetProperty)

I am trying to get the value of extension attribute 5 from an Exchange User object (retrieved from active directory) in C# (VSTO). I have been able to get many of the properties that are not exposed ...
0
votes
2answers
72 views

How do I reliably and consistently get the calculated width style for a VIDEO element?

var vid = document.createElement("video"); vid.src = "big_buck_bunny_640x360.mp4"; document.getElementsByTagName("body")[0].appendChild(vid); console.log(window.getComputedStyle(vid, ...
0
votes
2answers
241 views

how to retrieve nested properties in groovy

I'm wondering what is the best way to retrieve nested properties in Groovy, taking a given Object and arbitrary "property" String. I would like to something like this: ...
0
votes
1answer
208 views

Is there a getproperty or equivalent function in VBA?

I'd like to know if something like this pseudo code: myVar = "functionName" call someObject.(myVar evaluation) which would then be equivalent to: call someObject.functionName is possible in ...
0
votes
1answer
163 views

Hows the syntax to getProperty dynamically?

Is this possible and if, how? item.foo = "moo" def x = "foo" item.[x] = "moo"