1 write to _collection
System.Web (1)
Abstractions\HttpFileCollectionWrapper.cs (1)
31_collection = httpFileCollection;
15 references to _collection
System.Web (15)
Abstractions\HttpFileCollectionWrapper.cs (15)
36return _collection.AllKeys; 42return ((ICollection)_collection).Count; 48return ((ICollection)_collection).IsSynchronized; 55return _collection.Keys; 61return ((ICollection)_collection).SyncRoot; 67HttpPostedFile file = _collection[name]; 74HttpPostedFile file = _collection[index]; 80_collection.CopyTo(dest, index); 84HttpPostedFile file = _collection.Get(index); 89HttpPostedFile file = _collection.Get(name); 94ICollection<HttpPostedFile> files = _collection.GetMultiple(name); 100return ((IEnumerable)_collection).GetEnumerator(); 104return _collection.GetKey(index); 111_collection.GetObjectData(info, context); 116_collection.OnDeserialization(sender);