Microsoft.AspNetCore.SignalR.Hubs.DefaultAssemblyLocator.IsCandidateLibrary C# (CSharp) Method

IsCandidateLibrary() private method

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