object[ ] GetStartClassInstances( ) Member of iAnywhere.MobiLink.Script.ServerContext
Gets an array of the start classes that were constructed at server start time. The array length is zero if there are no start classes.
For more information about user-defined start classes, see User-defined start classes.
The following is an example of getStartClassInstances():
void FindStartClass(ServerContext sc, string name) { object[] startClasses = sc.GetStartClassInstances(); foreach (object obj in startClasses) { if (obj is MyClass) { // Execute some code. } } } |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |