示例#1
0
 internal ErrorPlugInInfo(BasePlugInAttribute attribute, Type type, PlugInErrorType errorType)
 {
     RegName      = attribute.GetRegName(type);
     Type         = type.ToString();
     AssemblyName = type.Assembly.FullName;
     Error        = errorType;
 }
示例#2
0
 internal void AddXmlError(string regName, string xmlFile, PlugInErrorType errorType)
 {
     fPlugInErrorLog.AddXmlError(regName, xmlFile, errorType);
 }
示例#3
0
 internal void AddCodeError(BasePlugInAttribute attribute, Type type, PlugInErrorType errorType)
 {
     fPlugInErrorLog.AddCodeError(attribute, type, errorType);
 }
示例#4
0
 internal void AddXmlError(string regName, string xmlFile, PlugInErrorType errorType)
 {
     Xml.Add(new ErrorPlugInInfo(regName, xmlFile, errorType));
 }
示例#5
0
 internal void AddCodeError(BasePlugInAttribute attribute, Type type, PlugInErrorType errorType)
 {
     Code.Add(new ErrorPlugInInfo(attribute, type, errorType));
 }
示例#6
0
 internal ErrorPlugInInfo(string regName, string xmlFile, PlugInErrorType errorType)
 {
     RegName      = regName;
     AssemblyName = xmlFile;
     Error        = errorType;
 }