FluentFTP 추가

This commit is contained in:
2018-01-02 00:47:15 +09:00
parent cf54025332
commit 1712ac7b9b
34 changed files with 19190 additions and 89 deletions

View File

@@ -225,6 +225,10 @@ namespace NewsCrawler
if(result != null)
return new RESULT(TYPE.NEGATIVE, result.ToString());
result = m_PositiveForce.Find(s => s.IsMatch(strText));
if (result != null)
return new RESULT(TYPE.POSITIVE_FORCE, result.ToString());
result = m_Manual.Find(s => s.IsMatch(strText));
if(result != null)
return new RESULT(TYPE.MANUAL, result.ToString());
@@ -233,10 +237,6 @@ namespace NewsCrawler
if(result != null)
return new RESULT(TYPE.POSITIVE, result.ToString());
result = m_PositiveForce.Find(s => s.IsMatch(strText));
if (result != null)
return new RESULT(TYPE.POSITIVE_FORCE, result.ToString());
return new RESULT(TYPE.NOT_MATCHED, "");
}