Command.Registry.GetSettings C# (CSharp) Method

GetSettings() public method

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

Usage Example

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