← Prev in month ← Prev in thread

XML Attributes versus .NET Attributes

From
Dan Mabbutt <>
To
Date
2003-10-11T15:48:44Z
ID
<>
Thread
XML Attributes versus .NET Attributes
To the list:

I'm not in the same 'guru class' as the members of this list, but I'm hoping
that some members will help confirm a question I have in Microsoft .NET.

It seems to me that 'attributes' in .NET are not always valid XML
'attributes'. As an example, consider this quote taken from a MSDN article
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadvnet/h
tml/vbnet04082003.asp).

---------------------------

An extender provider uses attributes to tell Visual Studio .NET what
properties it is providing to supported controls. To include these
attributes, place the following code immediately above the line that says
Public Class MSDNTextboxValidator:

<ProvideProperty("DataType", GetType(Control)), _
     ProvideProperty("DisplayName", GetType(Control)), _
     ProvideProperty("MinValue", GetType(Control)), _
     ProvideProperty("MaxValue", GetType(Control)), _
     ProvideProperty("Required", GetType(Control)), _
     ProvideProperty("RegularExpression", GetType(Control))>

---------------------------

Can someone from the list confirm or explain this for me?
← Prev in month ← Prev in thread