HttpStaticObjectsCollection.GetEnumerator Method
.NET Framework 3.0
Returns a dictionary enumerator used for iterating through the key-and-value pairs contained in the collection.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following example creates an enumerator for the StaticObjects collection.
System.Collections.IEnumerator myEnumerator =
get_Application().get_StaticObjects().GetEnumerator();
var myEnumerator : System.Collections.IEnumerator = Application.StaticObjects.GetEnumerator()
Community Additions
ADD
Show: