C# Class Reinforced.Typings.Exceptions.RtWarning

Represents warning message that could be displayed during build. Warnings can be added to global warnings collection located at ExportContext.Warnings. ExportContext instance can be found inside every TsCodeGeneratorBase
Mostrar archivo Open project: reinforced/Reinforced.Typings Class Usage Examples

Public Methods

Method Description
RtWarning ( int code, string subcategory = null, string text = null ) : System

Instantiates new RtWarning that is suitable be added to warnings collection.

Method Details

RtWarning() public method

Instantiates new RtWarning that is suitable be added to warnings collection.
public RtWarning ( int code, string subcategory = null, string text = null ) : System
code int Warning code
subcategory string Warning subcategory (optional). Important! Warning subcategory should not contain word "warning" and ":" symbol
text string Warning text
return System