コード例 #1
0
 XamlException IAddLineInfo.WithLineInfo(XamlException ex)
 {
     if (this.EndInstanceLineNumber > 0)
     {
         ex.SetLineInfo(this.EndInstanceLineNumber, this.EndInstanceLinePosition);
     }
     return ex;
 }
 private XamlException WithLineInfo(XamlException ex)
 {
     ex.SetLineInfo(this._lineNumber, this._linePosition);
     return ex;
 }
コード例 #3
0
 XamlException WithLineInfo(XamlException ex)
 {
     ex.SetLineInfo(LineNumber, LinePosition);
     return(ex);
 }
コード例 #4
0
 protected override XamlException WithLineInfo(XamlException ex)
 {
     ex.SetLineInfo(source.Line, source.Column);
     return(ex);
 }
コード例 #5
0
 XamlException WithLineInfo(XamlException ex)
 {
     ex.SetLineInfo(Line, Column);
     return(ex);
 }
コード例 #6
0
 private XamlException LineInfo(XamlException e)
 {
     if (this._xmlLineInfo != null)
     {
         e.SetLineInfo(this._xmlLineInfo.LineNumber, this._xmlLineInfo.LinePosition);
     }
     return e;
 }