Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
143 views

Custom Attribute - Set Attribute Usage for Only Private Members

I creating a custom attribute and I would like to the set the AttributeUsage (or maybe some other attribute in the attribute class) so that I my attribute can only be used in private methods, is that ...
4
votes
3answers
555 views

C# AttributeUsage for Specific Class

Is it possible to have something like AttributeUsage to restrict the use of an attribute to a specific class (not just AttributeTargets.Class - that would be any class)?
3
votes
4answers
568 views

Why would one want to use AttributeUsage AllowMultiple when creating attributes?

According to a book I'm reading, the AllowMultiple public property of AttributeUsage specifies: "...whether the target can have multiple instances of the attribute applied to it." Why would I ...
1
vote
2answers
222 views

Client-side validation for custom ValidationAttribute with AttributeTargets.Class

Is it possible to implement client-site validation for custom ValidationAttribute, which is used in Class scope? For example my MaxLengthGlobal, which should assure global max limit for all input ...
1
vote
2answers
89 views

Attribute help with Routing, compiler error

I have created a custom attribute called RouteAttribute: [AttributeUsage(AttributeTargets.Property)] public class RouteAttribute : Attribute { public string Url { get; set; } public bool ...