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