c:meta

<c:meta
  type = type_name
  args? = expression />

Defines type or member custom metadata.

Permitted parent elements
c:member
c:type

Attributes

args The metadata arguments.
type The metadata type.

In addition to the attributes in the preceding table, there are a number of standard attributes that may appear on any XCST element.

Example
<c:import-namespace ns='System.ComponentModel.DataAnnotations'/>

<c:type name='Document'>
   <c:member name='created_on' as='DateTime'>
      <c:meta type='Editable' args='false'/>
   </c:member>
</c:type>