Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Building Controls > Reference of Available Metadata Attributes

Reply
Thread Tools

Reference of Available Metadata Attributes

 
 
Nathan Sokalski
Guest
Posts: n/a
 
      06-27-2006
Does anybody know of a page with a good reference of the available Metadata
Attributes in .NET? Thanks.
--
Nathan Sokalski

http://www.nathansokalski.com/


 
Reply With Quote
 
 
 
 
Mattias Sjögren
Guest
Posts: n/a
 
      06-27-2006
Nathan,

Wow, you carefully picked the groups to post to, didn't you?


>Does anybody know of a page with a good reference of the available Metadata
>Attributes in .NET? Thanks.


Can you clarify what exactly you mean by "metadata attribute"?


Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
 
Reply With Quote
 
 
 
 
Nathan Sokalski
Guest
Posts: n/a
 
      06-28-2006
Here is a code example I copied from the .NET documentation:


Public Class MyControl
Inherits Control
' The base class has [Browsable(true)] applied to the Text property.
<Browsable(False)> _
Public Overrides Property [Text]() As String
...
End Property
...
End Class


In this code, <Browsable(False)> is a metadata attribute. Because I am
somewhat new to using metadata attributes (which is why I want to find a
page with a list of the ones available), I can't really give much more than
that.
--
Nathan Sokalski

http://www.nathansokalski.com/

"Mattias Sjögren" <> wrote in message
news:...
> Nathan,
>
> Wow, you carefully picked the groups to post to, didn't you?
>
>
>>Does anybody know of a page with a good reference of the available
>>Metadata
>>Attributes in .NET? Thanks.

>
> Can you clarify what exactly you mean by "metadata attribute"?
>
>
> Mattias
>
> --
> Mattias Sjögren [C# MVP] mattias @ mvps.org
> http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
> Please reply only to the newsgroup.



 
Reply With Quote
 
Vadivel Kumar
Guest
Posts: n/a
 
      06-28-2006
Very first, the Metadata Attributes are the classes that inherits
System.Attribute class provided by .NET framework. So, you can check
this thru MSDN itself.

You can also have a custom attributes for your class. The below url can
get you good amount of insight about the Attributes and its usage.

http://www.donxml.com/FunwithAttribu...rogramming.htm

-
Vadivel Kumar
http://vadivelk.net
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Generator metadata/attributes acooke.org@gmail.com Python 5 01-08-2009 03:18 PM
Parse reserved attributes as normal attributes Max XML 1 09-22-2006 12:04 PM
Reference of Available Metadata Attributes Nathan Sokalski ASP .Net 3 06-28-2006 11:05 AM
Reference of Available Metadata Attributes Nathan Sokalski ASP .Net Web Controls 3 06-28-2006 11:05 AM
Schema Metadata not a Metadata Schema Brett Selleck XML 1 09-04-2003 05:02 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57