GetSettings() public method

Returns a list of the settings an ISettingsCollection instance holds.
public GetSettings ( Type type ) : List
type System.Type
return List
コード例 #1
0
ファイル: Context.cs プロジェクト: newbish/hfmcmd
 /// <summary>
 /// Returns the SettingAttributes for the specified type.
 /// </summary>
 public List <SettingAttribute> GetSettings(Type type)
 {
     return(_registry.GetSettings(type));
 }