Axiom.Compiler.Framework.PrologCompilerError.PrologCompilerError C# (CSharp) Метод

PrologCompilerError() публичный Метод

public PrologCompilerError ( string errorCode, string errorText, string fileName, bool isWarning, int line, int column ) : System
errorCode string
errorText string
fileName string
isWarning bool
line int
column int
Результат System
        public PrologCompilerError(string errorCode, string errorText, string fileName, bool isWarning, int line, int column)
        {
            this._column = column;
            this._line = line;
            this._errorCode = errorCode;
            this._errorText = errorText;
            this._fileName = fileName;
            this._isWarning = isWarning;
        }