MetalamaAPI documentationAspect APIMetalama.​Framework.​AdvisingGetter­Template­SelectorGetter­Template­Selector
Open sandboxFocus

GetterTemplateSelector Constructor

GetterTemplateSelector(String, String, String, Boolean)

Initializes a new instance of the GetterTemplateSelector struct by specifying the name of the template methods to be applied. The named passed to this constructor must be the name of methods of the current aspect class, and these methods must be annotated with the TemplateAttribute custom attribute. You can define several templates by passing a value to optional parameters. The appropriate template will be automatically selected according to the method to which the advice is applied. If several templates are eligible for a method, the template that is the last in the list of parameters is selected.

Declaration
public GetterTemplateSelector(string defaultTemplate, string enumerableTemplate = null, string enumeratorTemplate = null, bool useEnumerableTemplateForAnyEnumerable = false)
Parameters
Type Name Description
String defaultTemplate

Name of the template that must be applied if no other template is applicable. This parameter is required.

String enumerableTemplate

Name of the template that must be applied to iterator methods returning an IEnumerable<T> or IEnumerable. See EnumerableTemplate for details.

String enumeratorTemplate

Name of the template that must be applied to an iterator method returning an an IEnumerator<T> or IEnumerator. See EnumeratorTemplate for details.

Boolean useEnumerableTemplateForAnyEnumerable

Indicates whether the EnumerableTemplate or EnumeratorTemplate must be applied to all methods returning compatible return type (if set to true), instead of only to methods using the yield statement. See UseEnumerableTemplateForAnyEnumerable for details.

Remarks

Note that this type has also an implicit conversion from String. If you only want to specify a default template, you can pass a string, without calling the constructor.