Command.Registry.GetSettings C# (CSharp) Méthode

GetSettings() public méthode

Returns a list of the settings an ISettingsCollection instance holds.
public GetSettings ( Type type ) : List
type System.Type
Résultat List
        public List<SettingAttribute> GetSettings(Type type)
        {
            return _settings[type];
        }

Usage Example

Exemple #1
0
 /// <summary>
 /// Returns the SettingAttributes for the specified type.
 /// </summary>
 public List <SettingAttribute> GetSettings(Type type)
 {
     return(_registry.GetSettings(type));
 }