RecognizeEnumeration<T>.TermsDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delegate to return the terms to match on for a C# value.
public delegate System.Collections.Generic.IEnumerable<string> RecognizeEnumeration<T>.TermsDelegate(object value) where T : class;
type RecognizeEnumeration<'T (requires 'T : null)>.TermsDelegate = delegate of obj -> seq<string>
Public Delegate Function RecognizeEnumeration(Of T).TermsDelegate(value As Object) As IEnumerable(Of String)
Parameters
- value
- Object
C# value to get terms for.
Return Value
Enumeration of regular expressions to match on for value.