Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
559 views

What's the point of indicating AllowMultiple=false on an abstract Attribute class?

On a recent question about MVC attributes, someone asked whether using HttpPost and HttpDelete attributes on an action method would result in either request type being allowed or no requests being ...
2
votes
1answer
206 views

Honouring of AttributeUsage on derived attribute types

Given the following, I would not expect the compiler to allow multiple attributes that are derived from the base attribute, given that is set to AllowMultiple=false. In fact it compiles without a ...
1
vote
1answer
68 views

Using reflection to get each instance of XmlElementAttribute for a single property

I'm trying to list the possible types that Item could contain. However I am stuck in that I can't call Item.GetType() to loop through its Attributes as this would just return the attributes of the ...