У меня небольшая проблема с DefaultValue для ConfigurationProperty.
Вот часть моей конфигурации XML:
<Storage id="storageId">
<Type>UNC</Type>
</Storage>
Для обработки этой конфигурации я создал «StorageElement: ConfigurationElement»":
public class StorageElement : ConfigurationElement
{
private static readonly ConfigurationPropertyCollection PropertyCollection = new ConfigurationPropertyCollection();
internal const string IdPropertyName = "id";
internal const string TypePropertyName = "Type";
public StorageElement()
{
PropertyCollection.Add(
new ConfigurationProperty(
IdPropertyName,
typeof(string),
"",
ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey
));
PropertyCollection.Add(
new ConfigurationProperty(
TypePropertyName,
typeof(ConfigurationTextElement<string>),
null,
ConfigurationPropertyOptions.IsRequired));
}
public string Id
{
get
{
return base[IdPropertyName] as string;
}
}
public string Type
{
get
{
return (base[TypePropertyName] as ConfigurationTextElement<string>).Value;
}
}
public override bool IsReadOnly()
{
return true;
}
protected override ConfigurationPropertyCollection Properties
{
get { return PropertyCollection; }
}
}
Для свойства Type я использую ConfigurationTextElement:
public class ConfigurationTextElement<T> : ConfigurationElement
{
public override bool IsReadOnly()
{
return true;
}
private T _value;
protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
{
_value = (T)reader.ReadElementContentAs(typeof(T), null);
}
public T Value
{
get { return _value; }
set { _value = value; }
}
}
Проблема в том, что я не могу установить not-null DefaultValue для моего Type-property.Error is:
An error occurred creating the configuration section handler for xxxConfigurationSection:
Object reference not set to an instance of an object.
Что мне нужно добавить в код, чтобы включить настройки по умолчанию?