示例#1
0
 /// <summary>
 /// Returns named parameters that can be used to control this component
 /// </summary>
 public IEnumerable <KeyValuePair <string, Type> > ExternalParametersForGroups(params string[] groups)
 {
     return(ExternalParameterAttribute.GetParameters(this, groups));
 }
示例#2
0
 protected virtual IEnumerable <KeyValuePair <string, Type> > DoGetExternalParametersForGroups(params string[] groups)
 {
     return(ExternalParameterAttribute.GetParameters(this, groups));
 }
示例#3
0
文件: LocalCache.cs 项目: ame89/nfx
 /// <summary>
 /// Returns named parameters that can be used to control this component
 /// </summary>
 public IEnumerable <KeyValuePair <string, Type> > ExternalParametersForGroups(params string[] groups)
 {
     return(ExternalParameterAttribute.GetParameters(this, groups).Concat(getTableOptionsAsExternalParameters()));
 }
示例#4
0
 protected virtual IEnumerable <KeyValuePair <string, Type> > DoGetExternalParameters()
 {
     return(ExternalParameterAttribute.GetParameters(this));
 }
示例#5
0
 /// <summary>
 /// Returns named parameters that can be used to control this component
 /// </summary>
 public virtual IEnumerable <KeyValuePair <string, Type> > ExternalParametersForGroups(params string[] groups)
 => ExternalParameterAttribute.GetParameters(this, groups);