HttpStaticObjectsCollection.GetObject Method (String)

 

Returns the object with the specified name from the collection. This property is an alternative to the this accessor.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

Public Function GetObject (
	name As String
) As Object

Parameters

name
Type: System.String

The case-insensitive name of the object to return.

Return Value

Type: System.Object

An object from the collection.

The following example returns an object named ArrayList1 from the StaticObjects collection and copies it to an object variable.

Dim MyObject As Object
MyObject = Application.StaticObjects.GetObject("ArrayList1")

.NET Framework
Available since 1.1
Return to top
Show: