You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
517 B
23 lines
517 B
${StandardHeader.C#} |
|
|
|
using System; |
|
using System.Configuration; |
|
|
|
namespace ${StandardNamespace} |
|
{ |
|
/// <summary> |
|
/// Configuration settings for ${ClassName}. |
|
/// </summary> |
|
public class ${ClassName}Section : ConfigurationSection |
|
{ |
|
/// <summary> |
|
/// Collection of <c>${ClassName}Element(s)</c> |
|
/// </summary> |
|
[ConfigurationProperty("customSection", IsDefaultCollection = true)] |
|
public ${ClassName}Collection ${ClassName} |
|
{ |
|
get { return (${ClassName}Collection) base["customSection"]; } |
|
} |
|
} |
|
} |
|
|
|
|