Microsoft.AspNetCore.SignalR.Hubs.DefaultAssemblyLocator.IsCandidateLibrary C# (CSharp) Méthode

IsCandidateLibrary() private méthode

private IsCandidateLibrary ( Microsoft.Extensions.DependencyModel.RuntimeLibrary library ) : bool
library Microsoft.Extensions.DependencyModel.RuntimeLibrary
Résultat bool
        private bool IsCandidateLibrary(RuntimeLibrary library)
        {
            return library.Dependencies.Any(dependency => string.Equals(AssemblyRoot, dependency.Name, StringComparison.Ordinal));
        }
    }