| 27 | |
| 28 | == New ServerConnectionI APIs == |
| 29 | |
| 30 | === GetConnectionPropertyValues === |
| 31 | |
| 32 | Implemented in both HttpServerConnection and LocalNativeConnection |
| 33 | |
| 34 | Description: Enumerates all known values for a given FDO connection property |
| 35 | |
| 36 | Parameters: |
| 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 | |
| 42 | Returns: |
| 43 | |
| 44 | An array (string[]) of possible input values for the given property. |