MetalamaAPI documentationAspect APIMetalama.​Framework.​AdvisingMethod­Template­SelectorMethod­Template­Selector
Open sandboxFocus

MethodTemplateSelector Constructor

MethodTemplateSelector(String, String, String, String, String, String, Boolean, Boolean)

Initializes a new instance of the MethodTemplateSelector 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 MethodTemplateSelector(string defaultTemplate, string asyncTemplate = null, string enumerableTemplate = null, string enumeratorTemplate = null, string asyncEnumerableTemplate = null, string asyncEnumeratorTemplate = null, bool useAsyncTemplateForAnyAwaitable = false, bool useEnumerableTemplateForAnyEnumerable = false)
Parameters
Type Name Description
System.String defaultTemplate

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

System.String asyncTemplate

Name of the template that must be applied to async methods, including async iterators unless specified otherwise. See AsyncTemplate for details.

System.String enumerableTemplate

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

System.String enumeratorTemplate

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

System.String asyncEnumerableTemplate

Name of the template that must be applied to an async iterator method returning an IAsyncEnumerable. See AsyncEnumerableTemplate for details.

System.String asyncEnumeratorTemplate

Name of the template that must be applied to an async iterator method returning an IAsyncEnumerator. See AsyncEnumeratorTemplate for details.

System.Boolean useAsyncTemplateForAnyAwaitable

Indicates whether the AsyncTemplate must be applied to all methods returning an awaitable type (including IAsyncEnumerable and IAsyncEnumerator), instead of only to methods that have the async modifier. See UseAsyncTemplateForAnyAwaitable for details.

System.Boolean useEnumerableTemplateForAnyEnumerable

Indicates whether the EnumerableTemplate, EnumeratorTemplate, AsyncEnumerableTemplate, AsyncEnumeratorTemplate must be applied to all methods returning a 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 System.String. If you only want to specify a default template, you can pass a string, without calling the constructor.