Can I include custom attributes in Sandcastle documentation?

Can custom attributes be included in the Sandcastle specification?

For example, consider this C # method:

public void ExampleMethod ( [Required] string input1, [DefaultValue("example")] string input2 ) 

Is there a way to infer Sandcastle documentation that input1 has the required attribute?

+4
source share
1 answer

This works for attributes and classes, I have not tried it on properties and fields yet. The description says that it should work.

You may also need to include "Inside Elements".

Sandcastle visibility settings Unfortunately, the document attributes are not related.

0
source

Source: https://habr.com/ru/post/1500251/


All Articles