Changes between Version 1 and Version 2 of maestro/MaestroAPI/2.1ApiChanges


Ignore:
Timestamp:
Apr 8, 2010, 2:17:06 AM (14 years ago)
Author:
jng
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • maestro/MaestroAPI/2.1ApiChanges

    v1 v2  
    2525MaestroAPI.ServerConnectionI connection = MaestroAPI.ConnectionFactory.CreateHttpConnection(url, sessionID, locale);
    2626}}}
     27
     28== New ServerConnectionI APIs ==
     29
     30=== GetConnectionPropertyValues ===
     31
     32Implemented in both HttpServerConnection and LocalNativeConnection
     33
     34Description: Enumerates all known values for a given FDO connection property
     35
     36Parameters:
     37
     38 * providerName: The name of the FDO provider
     39 * propertyName: The name of the property to fetch values from
     40 * partialConnectionString: The current connection string, some providers require certain pieces of information in order to be able to enumerate the values of a property. For example, the MySQL provider's DataStore property requires being able to connect to the MySQL server first. Thus you would use the partial connection string to specify the MySQL service to connect to (eg. The partial connection string would look like:  Service=localhost:3306;Username=myuser;Password=mypassword)
     41
     42Returns:
     43
     44An array (string[]) of possible input values for the given property.