Gets or sets the answer on the first secret question.
Syntax
| C# | |
|---|
string SecretQuestionAnswer1 {get; set;} |
Property Value
Type: System.String
The answer on the first secret question of profile.
Example
The following example uses property
SecretQuestionAnswer1 of profile.
| C# | Copy Code |
|---|
// get answer on the first secret question
string secretQuestionAnswer1 = project.Profile.SecretQuestionAnswer1;
// set answer on the first secret question
project.Profile.SecretQuestionAnswer1 = "12341234"; |
| PHP | Copy Code |
|---|
// get answer on the first secret question
$secretQuestionAnswer1 = $project->Profile->SecretQuestionAnswer1;
// set answer on the first secret question
$project->Profile->SecretQuestionAnswer1 = "12341234"; |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also