本文整理匯總了C#中Mono.Addins.Database.AddinScanResult.AddPathsToIgnore方法的典型用法代碼示例。如果您正苦於以下問題:C# AddinScanResult.AddPathsToIgnore方法的具體用法?C# AddinScanResult.AddPathsToIgnore怎麽用?C# AddinScanResult.AddPathsToIgnore使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mono.Addins.Database.AddinScanResult
的用法示例。
在下文中一共展示了AddinScanResult.AddPathsToIgnore方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: RegisterFileToScan
void RegisterFileToScan(IProgressStatus monitor, string file, AddinScanResult scanResult, AddinScanFolderInfo folderInfo)
{
if (scanResult.LocateAssembliesOnly)
return;
AddinFileInfo finfo = folderInfo.GetAddinFileInfo (file);
bool added = false;
if (finfo != null && (!finfo.IsAddin || finfo.Domain == folderInfo.GetDomain (finfo.IsRoot)) && fs.GetLastWriteTime (file) == finfo.LastScan && !scanResult.RegenerateAllData) {
if (finfo.ScanError) {
// Always schedule the file for scan if there was an error in a previous scan.
// However, don't set ChangesFound=true, in this way if there isn't any other
// change in the registry, the file won't be scanned again.
scanResult.AddFileToScan (file, folderInfo);
added = true;
}
if (!finfo.IsAddin)
return;
if (database.AddinDescriptionExists (finfo.Domain, finfo.AddinId)) {
// It is an add-in and it has not changed. Paths in the ignore list
// are still valid, so they can be used.
if (finfo.IgnorePaths != null)
scanResult.AddPathsToIgnore (finfo.IgnorePaths);
return;
}
}
scanResult.ChangesFound = true;
if (!scanResult.CheckOnly && !added)
scanResult.AddFileToScan (file, folderInfo);
}
示例2: ScanFolders
internal void ScanFolders(IProgressStatus monitor, string currentDomain, string folderToScan, StringCollection filesToIgnore)
{
AddinScanResult res = new AddinScanResult ();
res.Domain = currentDomain;
res.AddPathsToIgnore (filesToIgnore);
ScanFolders (monitor, res);
}