Field<T>.AddTerms Method
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.
Overloads
AddTerms(Object, TermsAttribute) |
Adds terms for a value. |
AddTerms(Object, String[]) |
Adds terms for a value. |
AddTerms(Object, TermsAttribute)
- Source:
- Field.cs
Adds terms for a value.
public Microsoft.Bot.Builder.FormFlow.Advanced.Field<T> AddTerms (object value, Microsoft.Bot.Builder.FormFlow.TermsAttribute terms);
member this.AddTerms : obj * Microsoft.Bot.Builder.FormFlow.TermsAttribute -> Microsoft.Bot.Builder.FormFlow.Advanced.Field<'T (requires 'T : null)>
Public Function AddTerms (value As Object, terms As TermsAttribute) As Field(Of T)
Parameters
- value
- Object
The value.
- terms
- TermsAttribute
The terms to add.
Returns
A Field<T>.
Applies to
AddTerms(Object, String[])
- Source:
- Field.cs
Adds terms for a value.
public Microsoft.Bot.Builder.FormFlow.Advanced.Field<T> AddTerms (object value, params string[] terms);
member this.AddTerms : obj * string[] -> Microsoft.Bot.Builder.FormFlow.Advanced.Field<'T (requires 'T : null)>
Public Function AddTerms (value As Object, ParamArray terms As String()) As Field(Of T)
Parameters
- value
- Object
The value.
- terms
- String[]
The terms.
Returns
A Field<T>.