Creates a new instance of the object and initializes the application.


Namespace: NetQuarry
Assembly: EAP.Core (in EAP.Core.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function CreateInstance( _ 
   ByVal appKey As String,  _ 
   ByVal userID As String,  _ 
   ByVal password As String,  _ 
   ByVal configProps As Properties _ 
) As IAppContext
C#
public static IAppContext CreateInstance(
   string appKey,
   string userID,
   string password,
   Properties configProps
)
C++
public:
 static IAppContext CreateInstance(
   String appKey,
   String userID,
   String password,
   Properties configProps
)
J#
public static IAppContext CreateInstance(
   string appKey,
   string userID,
   string password,
   Properties configProps
)
JScript
public static  function CreateInstance(
   appKey : String,
   userID : String,
   password : String,
   configProps : Properties
) : IAppContext

Parameters

appKey
The application key
userID
The User ID
password
The password
configProps
Configuration properties.

Return Value

The created Application Context object

See Also