FluentFs.Core.FileSet.ProcessPendings C# (CSharp) Méthode

ProcessPendings() private méthode

private ProcessPendings ( ) : void
Résultat void
        internal void ProcessPendings()
        {
            if (!string.IsNullOrEmpty(PendingExclude))
            {
                string tmp = PendingExclude;
                PendingExclude = string.Empty;
                ProcessExclude(tmp);
            }

            if (!string.IsNullOrEmpty(PendingInclude))
            {
                string tmp = PendingInclude;
                PendingInclude = string.Empty;
                ProcessInclude(tmp);
            }
        }