6 references to MaxHttpCollectionKeys
System.Web (6)
HttpCookieCollection.cs (2)
116if (Count >= AppSettings.MaxHttpCollectionKeys) { 117throw new InvalidOperationException(SR.GetString(SR.CollectionCountExceeded_HttpValueCollection, AppSettings.MaxHttpCollectionKeys));
HttpFileCollection.cs (2)
89if (Count >= AppSettings.MaxHttpCollectionKeys) { 90throw new InvalidOperationException(SR.GetString(SR.CollectionCountExceeded_HttpValueCollection, AppSettings.MaxHttpCollectionKeys));
HttpValueCollection.cs (2)
281if (base.Count >= AppSettings.MaxHttpCollectionKeys) { 282throw new InvalidOperationException(SR.GetString(SR.CollectionCountExceeded_HttpValueCollection, AppSettings.MaxHttpCollectionKeys));