NDoc 1.3.1 SDK

Settings.GetSettingList Method 

Retrieves a list of settings. If the list cannot be found then no items are added

[Visual Basic]
Public Sub GetSettingList( _ 
   ByVal section As String, _ 
   ByVal name As String, _ 
   ByVal itemType As Type, _ 
   ByRef list As IList _ 
)
[C#]
public void GetSettingList(
   string section,
   string name,
   Type itemType,
   ref IList list
);
[C++]
public: void GetSettingList(
   String* section,
   String* name,
   Type* itemType,
   * IList* list
);
[JScript]
public function GetSettingList(
   String section,
   String name,
   Type itemType,
   IList list
);

Parameters

section
The section name to store the list under
name
The name of the setting
itemType
The type of each setting in the list
list
A IList into which to put each item

See Also

Settings Class | NDoc.Core Namespace