必須かキーかを示す装飾されたプロパティを持つ ConfigElement があります。これをキーにしたいのですが、一意のキーを作成するためにユーザーに依存する必要がないように、キーを生成するにはどうすればよいですか? Guid.NewGuid() を入れてみましたが、既定値は定数でなければならないというエラーが発生しました。
An attribute argument must be a constant expression,
typeof expression or array creation expression of an attribute parameter type
私のクラスは次のようになります。
public class MyEntryElement : ConfigElement
{
#region Constructor
public MyEntryElement(ConfigElement parent)
: base(parent)
{
}
#endregion
#region Properties
[ConfigurationProperty("id", DefaultValue = Guid.NewGuid(), IsRequired = true, IsKey = true)]
[ObjectInfo(Title = "ID", Description = "Defines the id of the entry.")]
public string ID
{
get
{
return (string)this["id"];
}
set
{
this["id"] = value;
}
}
[ConfigurationProperty("note", DefaultValue = "", IsRequired = true)]
[ObjectInfo(Title = "Note", Description = "Defines the note of the entry.")]
public string Note
{
get
{
return (string)this["note"];
}
set
{
this["note"] = value;
}
}