17 lines
556 B
C#
17 lines
556 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="IErrorHelper.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">[....]</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Xml.Xsl {
|
|
|
|
internal interface IErrorHelper {
|
|
|
|
void ReportError(string res, params string[] args);
|
|
|
|
void ReportWarning(string res, params string[] args);
|
|
}
|
|
}
|