Пример #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
 /// <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);