GetDatabaseLastCompiled

Description

Returns the timestamp of the last time the given database was compiled. If the project has never been compiled, DateTime.MinValue is returned

Signature
DateTime GetDatabaseLastCompiled(string key, string projectId, DatabaseType dbType)

Parameters

Name Data Type Description

key

string required

The authentication key

projectId

string required

The ID of the project

dbType

DatabaseType required

Production or Test

Response

Data Type Description

DateTime

Example

var client = new SurveyDesignSoapClient();

var lastCompiled = client.GetDatabaseLastCompiled(clientKey, "p123123123", DatabaseType.Production);