IFormBuilder<T>.Build(Assembly, String) 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.
Build the form based on the methods called on the builder.
public Microsoft.Bot.Builder.FormFlow.IForm<T> Build (System.Reflection.Assembly resourceAssembly = default, string resourceName = default);
abstract member Build : System.Reflection.Assembly * string -> Microsoft.Bot.Builder.FormFlow.IForm<'T (requires 'T : null)>
Public Function Build (Optional resourceAssembly As Assembly = Nothing, Optional resourceName As String = Nothing) As IForm(Of T)
Parameters
- resourceAssembly
- Assembly
Assembly for localization resources.
- resourceName
- String
Name of resources to use for localization.
Returns
The constructed form.
Remarks
The default assembly is the one that contains T
and the default resourceName if the name of that type.