6 references to ChainDepthLimit
NuGet.Packaging (6)
Signing\Utility\CertificateUtility.cs (6)
114for (var i = 0; i < Math.Min(ChainDepthLimit, certCollection.Count); i++) 121if (certCollection.Count > ChainDepthLimit) 123collectionStringBuilder.AppendLine(string.Format(CultureInfo.CurrentCulture, Strings.CertUtilityMultipleCertificatesFooter, certCollection.Count - ChainDepthLimit)); 137for (var i = 1; i < Math.Min(ChainDepthLimit, chainElementsCount); i++) 143if (chainElementsCount > ChainDepthLimit) 145collectionStringBuilder.AppendLine(string.Format(CultureInfo.CurrentCulture, Strings.CertUtilityMultipleCertificatesFooter, chainElementsCount - ChainDepthLimit));