Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
3answers
8k views

C# - how enumerate all classes with custom class attribute?

Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
13
votes
1answer
1k views

Generating a custom compile time warning C#

I'm using VS2008 and would like to create a compile time warning / error based on custom attributes on a property (if it is possible). There are two cases which interest me currently: [MyAttribute ...
13
votes
4answers
2k views

What are the similarities and differences between Java Annotations and C# Attributes?

I have a Java library I'm considering porting to C#. The Java library makes extensive use of annotations (at both build time and run time.) I've never used C# attributes, but understand that they ...
9
votes
5answers
813 views

Is it a bad practice to add extra attributes to html elements?

Sometimes I add an attribute to some of my controls. Like: <a href id="myLlink" isClimber="True">Chris Sharma</a> I know it is not a valid html. But it helps me in some cases. Is this ...
8
votes
2answers
131 views

Ensure mutually exclusive interfaces at compile-time?

I'd like to ensure that two interfaces are never found on the same class at compile-time, similar to how AttributeUsage checks custom Attributes at compile-time. e.g.: ...
8
votes
6answers
2k views

Is it possible to query custom Attributes in C# during compile time ( not run-time )

In other words could it be possible to create assembly, which does not even compile (assuming the checking code is not removed ) if each one of the Classes does not have ( "must have" ) custom ...
7
votes
2answers
2k views

Are Custom Attributes OK in XHTML

I understand that according to the HTML specification, it's invalid to add custom attributes to elements. Is this also invalid with XHTML? I thought XHTML was part of the XML family, and as such was ...
7
votes
5answers
4k views

Adding custom property attributes in Entity Framework code

Is there any way to add custom attributes to properties in EF generated code? The only thing I can see as a plausible solution would be to come up with a custom T4 template. However, because of the ...
6
votes
2answers
390 views

Can I add custom methods/attributes to built-in Python types?

For example—say I want to add a helloWorld() method to Python's dict type. Can I do this? JavaScript has a prototype object that behaves this way. Maybe it's bad design and I should subclass ...
6
votes
2answers
1k views

Custom Attributes on Class Members

I am using a Custom Attribute to define how a class's members are mapped to properties for posting as a form post (Payment Gateway). I have the custom attribute working just fine, and am able to get ...
5
votes
2answers
72 views

JQuery : Is it bad practice to use a custom attribute in my html code?

I've been adding custom attributes which I reference using JQuery, this works great. But is it good practice? example: <div class="monkeys" customattr="big Monkey"> </div> thanks all
5
votes
1answer
116 views

Why don't Perl attribute handlers get called from other packages?

I am having a strange problem with Attribute::Handlers that looks like some kind of bug: package MyPackage; use Attribute::Handlers; sub UNIVERSAL::foo :ATTR(CODE) { ... } When used in ...
5
votes
1answer
1k views

Adding attributes to customer entity

my current goal is to add a new customer attribute (with int type) which should appear as select with predefined options (loaded from a model with entries editable in backend, which is done). I'm ...
5
votes
1answer
683 views

ASP.NET MVC/C#: Can I create valid custom HTML attributes using Html.ActionLink()?

I have the need to put a custom attribute on an anchor which I am constructing using Html.ActionLink() <%: Html.ActionLink("Delete", "Delete", new { id = Model.ID }, new { data-icon = ...
5
votes
2answers
2k views

.NET, C#: How to add a custom serialization attribute that acts as ISerializable interface

I am doing some serialization of db linq objects, which contain EntitySet and EntityRef classes. I found a pretty easy way to deal with serialization of these classes, by simply using ISerializable ...
5
votes
2answers
1k views

Attribute.IsDefined doesn't see attributes applied with MetadataType class

If I apply attributes to a partial class via the MetadataType attribute, those attributes are not found via Attribute.IsDefined(). Anyone know why, or what I'm doing wrong? Below is a test project I ...
5
votes
5answers
236 views

Is there a generic attribute for all HTML elements aside from ID and class?

Like a tag that I can use to store some necessary info? But really isn’t required or used by the HTML? Works like the tag attribute for objects on Visual Basic?
5
votes
7answers
716 views

Real world use of custom .NET attributes

What kind of things have you used custom .NET attributes for in the real world? I've read several articles about them, but I have never used custom attributes. I feel like I might be overlooking ...
5
votes
2answers
2k views

ASP.NET MVC How to apply role-based or authentication-based View rendering?

i want to show/hide certain parts of a View based on Authentication-status or Roles. For my controller actions I have extended ActionFilterAttribute so I can attribute certain Actions. ...
5
votes
1answer
2k views

C# Attributes On Fields

How do I set an attribute on a field anywhere in my assembly, then reflect on those field attributes in my entire assembly and get/set the field values that the attribute is attached too?
4
votes
2answers
108 views

Finding mvc3 action method parameters in custom attribute

I am working on implementing user right management on an mvc3 application. I have defined my action methods on database with ControllerName, ActionName, and Parameters consists ParameterName and ...
4
votes
1answer
49 views

Is it possible to code a Custom Attribute that breaks a build (like System.ObsoleteAttribute)?

I'd like to create a custom attribute that is executed during the build process and can break the build according to some logic, pretty similar to System.ObsoleteAttribute. For instance, consider ...
4
votes
1answer
28 views

Disallowing Custom Attributes Together

Is there a design-time mechanism to check if two attributes are being applied to the same object? I have created two attributes, [MyXAttribute] and [MyYAttribute], say, but I would like a design-time ...
4
votes
2answers
674 views

default login url on HttpUnauthorizedResult in asp.net mvc

I have written a custom AuthorizeAttribute which has the following condition in asp.net mvc3 application: public override void OnAuthorization(AuthorizationContext filterContext) { //auth ...
4
votes
4answers
182 views

Passing a type as parameter to an attribute

I wrote a somewhat generic deserialization mechanism that allows me to construct objects from a binary file format used by a C++ application. To keep things clean and easy to change, I made a Field ...
4
votes
1answer
2k views

How to pass custom component parameters in java and xml

When creating a custom component in android it is often asked how to create and pass through the attrs property to the constructor. It is often suggested that when creating a component in java that ...
4
votes
3answers
563 views

ASP.NET MVC2 Not replacing underscores with dashes in HtmlAttributes

I've heard from a couple of different sources that when using HTML helpers in ASP.NET MVC2, one can create custom attributes with dashes in them (e.g. <a data-rowId="5">) by using an underscore ...
4
votes
2answers
159 views

How to replace auto-implemented c# get body at runtime or compile time?

I've been trying to figure this out all night, but I guess my knowledge of the .Net Framework just isn't that deep and the problem doesn't exactly Google well, but if I can get a nod in the right ...
4
votes
1answer
377 views

J2EE: Default values for custom tag attributes

So according to Sun's J2EE documentation (http://docs.sun.com/app/docs/doc/819-3669/bnani?l=en&a=view), "If a tag attribute is not required, a tag handler should provide a default value." My ...
4
votes
3answers
2k views

.NET custom property attribute?

EDIT: I'd better rephrase: How can I shift the GET-implementation of a Class property to a / using a custom attribute? (I've added instantation vars (classname, propertyname) to the attribute, however ...
4
votes
4answers
420 views

How do I pass in the repository to an authorize attribute in ASP.NET MVC

I am castle Windsor and it works great for controller constructors in passing in the repository that is being used. private IStoryRepository Repository; public StoryController(IStoryRepository ...
3
votes
2answers
121 views

how do you add user defined properties/values in android manifest file?

i want to add a custom attribute & property in the manifest file and be able to read it at run time, so that i can customize the application's behavior via these manifest properties. how is that ...
3
votes
2answers
154 views

How do I set custom HTML attributes in django forms?

I have a Django form that is part of page. Lets say I have a field: search_input = forms.CharField(_(u'Search word'), required=False) I can access it only in template via {{ form.search_input }}. ...
3
votes
3answers
109 views

Can I use a collection initializer for an Attribute?

Can an attribute in C# be used with a collection initializer? For example, I'd like to do something like the following: [DictionaryAttribute(){{"Key", "Value"}, {"Key", "Value"}}] public class Foo { ...
3
votes
1answer
93 views

MVC ActionFilter like attributes for WCF

Is there a way I can create custom method attributes for WCF that allow me to easily decorate a service method with a pre filter much like MVC uses action filters. I plan to use them for ...
3
votes
1answer
424 views

Finding custom attributes on view model properties when model binding

I've found a lot of information on implementing a custom model binder for validation purposes but I haven't seen much about what I'm attempting to do. I want to be able to manipulate the values ...
3
votes
1answer
277 views

c# 4.0 get class properties with (specified attribute and attribute.data)

I would like to get what properties of my class have an exact attribute with a concrete string. I have this implementation (Attribute and Class): [AttributeUsage(AttributeTargets.Property, ...
3
votes
2answers
730 views

Using action parameters in custom Authorization Attribute in ASP.NET MVC3

I have a controller which should only request authorization when loaded with specific parameters. Like when the parameter ID is 8 for example. I came up with using a custom validation attribute like ...
3
votes
1answer
74 views

Two sets of serialization attributes on same class

I'm facing a class design problem. I'm using data contract serializer. So, in the assembly that is shared across all my applications, I have something like this: // Assembly DataContracts.dll: .NET ...
3
votes
2answers
283 views

What AttributeTarget should I use for enum members?

I want to use my IsGPUBasedAttribute for enum members like this: public enum EffectType { [IsGPUBased(true)] PixelShader, [IsGPUBased(false)] Blur } but the compiler doesn't let me ...
3
votes
1answer
421 views

get all types in assembly with custom attribute

Is there an elegant way to get all the types in an assembly that have a custom attribute? So if I have a class [Findable] public class MyFindableClass {} I would like to be able to find it in a ...
3
votes
2answers
894 views

Custom Attributes in Android

I'm trying to create a custom attribute called Tag for all editable elements. I added the following to attrs.xml <declare-styleable name="Spinner"> <attr name="tag" format="string" /> ...
3
votes
2answers
237 views

How to pass compiler checked property names / Expression tree to a custom attribute

In a few places, I've noticed expression trees passed as arguments to methods to allow compiler checking of property names. For example, Caliburn Micro has the following method signature in its ...
3
votes
4answers
155 views

php: read attribute from form element

is it possible to read an attribute from a form element? I got this: <input class="number required" min="1250" max="999999999" id="insert_counter1" name="my_counter" value="" type="text"> ...
3
votes
1answer
177 views

Why predicate isn't filtering when building it via reflection

I'm building a rather large filter based on an SearchObject that has 50+ fields that can be searched. Rather than building my where clause for each one of these individually I thought I'd use some ...
3
votes
2answers
150 views

What happens if you use custom attribute in a HTML tag?

this question isn't related to jQuery itself but I found a plugin named Metadata found there and one of the example uses custom tag attribute: <li data="{some:'random', json: ...
3
votes
4answers
112 views

jQuery Selectors

I am trying to get an array of checkboxes that ARE checked AND have a certain attribute (tag) that is NOT blank. (I know that the attribute called tag is not HTML compliant but it does work across ...
3
votes
2answers
128 views

When is the desctructor called for a custom attribute class?

Say I have this class: [AttributeUsage(AttributeTargets.Method)] public class MyAttribute : Attribute { public MyAttribute() { // Do stuff } ~MyAttribute() { // When is this ...
3
votes
1answer
137 views

ICustomAttributeProvider.GetCustomAttributes(…): Design Strangety?

The MSDN Documentation: MemberInfo.GetCustomAttibutes Method (Type, Boolean) states in the remarks: This method ignores the inherit parameter for properties and events. To search the inheritance ...
3
votes
2answers
101 views

Is restricting attributes to class or properties doable?

I have two custom attributes defined like so: internal class SchemaAttribute : Attribute { internal SchemaAttribute(string schema) { Schema = schema; } internal string Schema { ...

1 2 3 4 5 7