The property itself would be a normal read only property (i.e. no set method).
[Description("Validate the account"),
Category("Values"),
DefaultValue(false),
Browsable(true)]
public bool Retvalue
{
get {return };
}
The Browsable(true) isonly required if you need this to appear in the property grid at design time - otherwise set it to false and in that case the Category and Description are also un-needed.