2
votes
1answer
10 views
Execution Priority in custom Attributes in asp.net mvc
I have two custom attributes in my asp.net mvc(C#) application.
[CustAttribute1()]
[CustAttribute2()]
When i use those attributes to my actions, which will get execute first?
[ …
2
votes
2answers
66 views
is there any property default value initializer attribute?
I need like this
public class AA{
public AA(){}
[Default("hi")]
public string value1{get;set}
[Default(12)]
public int value2{get;set;}
}
Usage:
AA a=new AA();
p …
3
votes
7answers
288 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 mig …
1
vote
2answers
50 views
How to make a Attribute aware of the Name of the Proprty it is on?
I want to implement a simple attribute that is used to map Database Columns to Properties.
So what i have so far is something that attached like so:
[DataField("ID")]
public in …
0
votes
2answers
774 views
Magento custom attribute default value not showing in front end
Hi there,
I have added some custom attributes to the products in the admin section of our Magento 1.3.2.1 installation and I've given some of those attributes default values. The …
1
vote
3answers
73 views
Consuming Custom Attributes
Taking a look at the following question, http://stackoverflow.com/questions/1023186/real-world-use-of-custom-net-attributes how would you implement the solution proposed by @Esteba …
0
votes
2answers
44 views
Custom Attributes on ActionResult
This is probably a rookie question but;
Let's say I have an ActionResult that I only want to grant access to after hours.
Let's also say that I want to decorate my ActionResult w …
1
vote
3answers
58 views
Are There Reasons To Not Use CustomAttributes?
This is mostly a request for comments if there is a reason I should not go down this road.
I have a multi-tierd, CodeSmith generated application. At the UI level there need to be …
1
vote
5answers
68 views
Method Profiling Using Attributes
Is it possible to profile individual methods via attributes in .NET?
I am currently trying to locate some of the bottle necks in a large legacy application that makes heavy use …
1
vote
3answers
37 views
Has anyone come accross a browser where a custom attribute didn’t work?
Hi,
The web application im working on has a few custom attributes on HTML elements to store data that is output.
Only happens here and there and so far I haven't noticed anything …
1
vote
2answers
219 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. Howe …
1
vote
3answers
256 views
How to check if C# class has security attribute used
Hi,
How can I check and make sure that a class uses my own custom security attribute? I know that I can use reflection to get normal attributes, but if the custom attribute is bas …
2
votes
2answers
196 views
Custom attributes in C#
Hello
I have a custom attribute for my page like this:
[PageDefinition("My page", "~/Parts/MyPage.aspx")]
My PageDefinition looks like this, where AttributeItemDefinitions is g …
4
votes
4answers
88 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?
7
votes
1answer
194 views
Generating a custom compile time warning C#
Hi all,
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 …
