コード例 #1
0
ファイル: XamlParseError.cs プロジェクト: radtek/Shopdrawing
 internal XamlParseError(XamlErrorSeverity severity, int errorCode, ITextLocation lineInformation, string messageFormat, params string[] parameters)
 {
     this.severity        = severity;
     this.errorCode       = errorCode;
     this.lineInformation = lineInformation != null ? lineInformation : (ITextLocation) new TextLocation(0, 0);
     this.messageFormat   = messageFormat;
     this.parameters      = new List <string>((IEnumerable <string>)parameters);
 }
コード例 #2
0
ファイル: XamlParseErrors.cs プロジェクト: radtek/Shopdrawing
 public static XamlParseError NewParseError(XamlErrorSeverity severity, XamlErrorCode errorCode, ITextLocation lineInformation, string messageFormat, params string[] parameters)
 {
     return(new XamlParseError(severity, (int)errorCode, lineInformation, messageFormat, parameters));
 }