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