Command.Registry.GetSettings C# (CSharp) 메소드

GetSettings() 공개 메소드

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

Usage Example

예제 #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));
 }