Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
294 views

Why does ICustomAttributeProvider.GetCustomAttributes() return object[] instead of Attribute[]?

Why does ICustomAttributeProvider.GetCustomAttributes() return object[] instead of Attribute[]? Is there any circumstance when using the ICustomAttributeProvider implementations from mscorlib and ...
8
votes
1answer
5k views

How do I GetCustomAttributes?

I have tried the following code using the 2.0 framework and I get an attribute back, but when I try this on the compact framework, it always returns an empty array. The MSDN documenation says its ...
1
vote
1answer
206 views

Custom Attributes such as Displayname not listed with GetCustomAttribute

I have some code to define custom attributes and then to read in the code, it fails to work. To try and fix the problem I have gone back and tried to use DisplayName, however , I am still having the ...
1
vote
2answers
138 views

In .Net, why aren't attributes declared on interfaces returned when calling Type.GetCustomAttributes(true)?

In answer to this question I tried to use Type.GetCustomAttributes(true) on a class which implements an interface which has an Attribute defined on it. I was surprised to discover that ...
1
vote
1answer
526 views

System.Type.GetCustomAttributes on an assembly loaded from a network share is not showing all attributes

I have a managed dll – repro.dll, which contains class TestModuleCommand decorated with 2 attributes: System.ObsoleteAttribute and System.Management.Automation.CmdletAttribute (comes from ...
1
vote
2answers
291 views

VB.net Values of Custom Attributes

I'm new to custom attributes, so I'm wondering if it is possible to get the values of the attributes. An example of the properties in my class which I use the custom attributes is: Private mFiller As ...
0
votes
1answer
276 views

C# - Silverlight - CustomAttribute with Enum

I have the following class: [MetadataAttribute] [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] public class ModuleActivationButtonAttribute : ExportAttribute { public Enum ...