The <exception> tag describes which exceptions can be thrown by a member.
<exception cref="member">description</exception>
where:
Property, Method, Event, Operator, Type Conversion
This tag is applied to a method definition.
[C#] using System; /// comment for class public class EClass : Exception { // class definition ... } /// <exception cref="System.Exception">Thrown when... .</exception> class TestClass { public static void Main() { try { } catch(EClass) { } } }
Tag Usage | NDoc Tags | Microsoft's definition
NDoc development is hosted by |