Application Class

The Application class of the com.ms.iis.asp package provides access to objects and variables that have been assigned application scope. You can use the Application class to share information among users of an application. Because applications are designed to support multiple users, the Application class exposes the lock and unlock methods to prevent multiple user conflicts.

public Application(com.ms.asp.IapplicationObject) extends ObjectDictionary;
{
  //Methods
  public void lock();
  public ObjectDictionary staticObjects();
  public void unlock();
}

© 1999 Microsoft Corporation. All rights reserved. Terms of use.