Scenario is very simple somewhere in the code I have this

dynamic myVariable = GetDataThatLooksVerySimilarButNotTheSame();

 //how to do this?
 if (myVariable.MyProperty.Exists)   
 //Do stuff

So basically the question is how to check (avoiding exceptions) that a certain property is available in my dynamic variable. I could do GetType() but I'd rather avoid that, I dont actually want to know the type of the object I want to know if a property (or method if that makes life easier) is available Any pointers?

Cheers

link|improve this question

1  
There are a couple of suggestions here: stackoverflow.com/questions/2985161/… - but no accepted answer so far. – Andrew Anderson Jun 8 '10 at 15:57
thanks, I can see how to make fir one of the solutions, tho I was wondering if there is anything I m missing out – Miau Jun 8 '10 at 17:30
feedback

6 Answers

up vote 7 down vote accepted

I think there is no way to find out whether a dynamic variable has a certain member without trying to access it, unless you re-implemented the way dynamic binding is handled in the C# compiler. Which would probably include a lot of guessing, because it is implementation-defined, according to the C# specification.

So you should actually try to access the member and catch an exception, if it fails:

dynamic myVariable = GetDataThatLooksVerySimilarButNotTheSame();

try
{
    var x = myVariable.MyProperty;
    // do stuff with x
}
catch (RuntimeBinderException)
{
    //  MyProperty doesn't exist
} 
link|improve this answer
This is the best option – Randolpho Jan 4 at 20:20
I ll mark this as the answer as its been so long, it does seem to be the best answer – Miau May 21 at 23:49
feedback

Well, I faced a similar problem but on unit tests.

Using SharpTestsEx you can check if a property existis. I use this testing my controllers, because since the JSON object is dynamic, someone can change the name and forget to change it in the javascript or something, so testing for all properties when writing the controller should increase my safety.

Example:

dynamic testedObject = new ExpandoObject();
testedObject.MyName = "I am a testing object";

Now, using SharTestsEx:

Executing.This(delegate {var unused = testedObject.MyName; }).Should().NotThrow();
Executing.This(delegate {var unused = testedObject.NotExistingProperty; }).Should().Throw();

Using this, i test all existing properties using "Should().NotThrow()".

It's probably out of topic, but can be usefull for someone.

link|improve this answer
feedback

Maybe use reflection?

dynamic myVar = GetDataThatLooksVerySimilarButNotTheSame();
Type typeOfDynamic = myVar.GetType();
bool exist = typeOfDynamic.GetProperties().Where(p => p.Name.Equals("PropertyName")).Any(); 
link|improve this answer
Quote from the question ". I could do GetType() but I'd rather avoid that" – Miau May 3 '11 at 17:07
Doesn't this have the same drawbacks as my suggestion? RouteValueDictionary uses reflection to get properties. – Steve Wilkes Jun 30 '11 at 19:52
feedback

If you control the type being used as dynamic, couldn't you return a tuple instead of a value for every property access? Something like...

public class DynamicValue<T>
{
    internal DynamicValue(T value, bool exists)
    {
         Value = value;
         Exists = exists;
    }

    T Value { get; private set; }
    bool Exists { get; private set; }
}

Possibly a naive implementation, but if you construct one of these internally each time and return that instead of the actual value, you can check Exists on every property access and then hit Value if it does with value being default(T) (and irrelevant) if it doesn't.

That said, I might be missing some knowledge on how dynamic works and this might not be a workable suggestion.

link|improve this answer
feedback

dynamic myObj = ....

bool isValid = (myObj as IDictionary<string, object>).ContainsKey(...);

link|improve this answer
3  
AFAIK that will only work for expandos and not as a general technique for dynamics. – chibacity Jan 29 '11 at 17:20
chibacity is correct on this. – Elan Hasson Apr 20 '11 at 19:56
feedback

This should do it:

dynamic myObj = new Person("Bob", 22);

bool heightPropertyExists = new System.Web.Routing.RouteValueDictionary(myObj).ContainsKey("Height");
link|improve this answer
Doesn't work if you implement your own DynamicObject. – svick Apr 24 '11 at 3:13
Really? I made a new class TestDynamic : DynamicObject, added a Count property to it, passed an instance of it to a new RouteValueDictionary, and the dictionary has one entry with the key 'Count'. What am I missing? – Steve Wilkes Apr 24 '11 at 10:28
That's not what I meant by implementing DynamicObject. Try overridding its TryGetMember() method. See gist.github.com/939505. – svick Apr 24 '11 at 11:45
Ok, I see what you mean now, thanks for that. In your example you've returned an explicit value from TryGetMember() without adding the member to the DynamicObject; because of that the DynamicObject has no members, so the RouteValueDictionary having no entries is expected and correct. You have to go round the houses and implement something you'd (surely?) never do in a production system to find this exception, so this doesn't seem to me to be a valid case of RouteValueDictionary not being able to be used to check the properties of a dynamic. – Steve Wilkes May 9 '11 at 13:12
but that's the whole point of DynamicObject. You don't specify the properties, because you don't know them at compile time. You could for example use it to represent row of CSV file. In that case, you, as an author of CSV library couldn't know what properties should the class have. – svick May 9 '11 at 18:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.