internal ErrorPlugInInfo(BasePlugInAttribute attribute, Type type, PlugInErrorType errorType) { RegName = attribute.GetRegName(type); Type = type.ToString(); AssemblyName = type.Assembly.FullName; Error = errorType; }
internal void AddXmlError(string regName, string xmlFile, PlugInErrorType errorType) { fPlugInErrorLog.AddXmlError(regName, xmlFile, errorType); }
internal void AddCodeError(BasePlugInAttribute attribute, Type type, PlugInErrorType errorType) { fPlugInErrorLog.AddCodeError(attribute, type, errorType); }
internal void AddXmlError(string regName, string xmlFile, PlugInErrorType errorType) { Xml.Add(new ErrorPlugInInfo(regName, xmlFile, errorType)); }
internal void AddCodeError(BasePlugInAttribute attribute, Type type, PlugInErrorType errorType) { Code.Add(new ErrorPlugInInfo(attribute, type, errorType)); }
internal ErrorPlugInInfo(string regName, string xmlFile, PlugInErrorType errorType) { RegName = regName; AssemblyName = xmlFile; Error = errorType; }