Exceptions that will not generate rules if the content does not pass the filter


Namespace: Benchmarx.Munja
Assembly: Munja (in Munja.dll)

Syntax

Visual Basic (Declaration)
<XmlArrayItemAttribute("Exception", GetType(String)), _
 XmlArrayAttribute("Exceptions")>

Public exceptions As List(Of String)
C#
[XmlArrayItemAttribute("Exception", typeof(String))]
[XmlArrayAttribute("Exceptions")]
public List<string> exceptions;
C++
[XmlArrayItemAttribute(L"Exception", typeof(String))]
[XmlArrayAttribute(L"Exceptions")]
public:
 List<string> exceptions sealed ;
J#
/** @attribute XmlArrayItemAttribute("Exception", typeof(String)) */
/** @attribute XmlArrayAttribute("Exceptions") */
public List<string> exceptions
JScript
public 
   XmlArrayItemAttribute("Exception", typeof(String))
   XmlArrayAttribute("Exceptions")
exceptions : List<string>;

See Also