4 writes to Column
System (1)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
547ce.Column = int.Parse(m.Groups[5].Value, CultureInfo.InvariantCulture);
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Scripts.cs (1)
382error.Column = errScript.endLoc.Pos;
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\XomlCompilerError.cs (2)
54this.Column = exception.LinePosition - 1; 64this.Column = error.Column - 1;
14 references to Column
System (1)
compmod\system\codedom\compiler\CompilerError.cs (1)
153Column,
System.Activities (1)
System\Activities\ExpressionParser\SourceExpressionException.cs (1)
96info.AddValue("column" + index, error.Column);
System.Data.Entity.Design (2)
System\Data\Entity\Design\EntityCodeGenerator.cs (2)
454if (error.Line == -1 && error.Column == -1) 472error.Column);
System.Data.SqlXml (3)
System\Xml\Xsl\XslException.cs (1)
131int errorColumn = error.Column;
System\Xml\Xsl\Xslt\Compiler.cs (2)
345result = x.Column.CompareTo(y.Column);
System.Workflow.ComponentModel (7)
AuthoringOM\Compiler\CompileXomlTask.cs (2)
605this.Log.LogWarning(error.ErrorText, error.ErrorNumber, error.FileName, error.Line, error.Column); 617this.Log.LogError(error.ErrorText, error.ErrorNumber, error.FileName, error.Line, error.Column);
AuthoringOM\Compiler\XomlCompilerError.cs (5)
64this.Column = error.Column - 1; 98if (Line <= 0 || Column <= 0) 101return string.Format(CultureInfo.CurrentCulture, "{0}({1},{2}) : {3} {4}: {5}", new object[] { FileName, this.incrementLineAndColumn ? Line + 1 : Line, this.incrementLineAndColumn ? Column + 1 : Column, IsWarning ? "warning" : "error", ErrorNumber, ErrorText }); 153return this.Column;