System.Xml.Xsl.Xslt.CompilerError.CompilerError C# (CSharp) Method

CompilerError() public method

public CompilerError ( string fileName, int line, int column, string errorNumber, string errorText ) : System.Collections
fileName string
line int
column int
errorNumber string
errorText string
return System.Collections
        public CompilerError(string fileName, int line, int column, string errorNumber, string errorText)
        {
            Line = line;
            Column = column;
            ErrorNumber = errorNumber;
            ErrorText = errorText;
            FileName = fileName;
        }
CompilerError