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