Share via


Fact Constructors

Definition

Overloads

Fact()

Initializes a new instance of the Fact class.

Fact(String, String)

Initializes a new instance of the Fact class.

Fact()

Initializes a new instance of the Fact class.

public Fact ();
Public Sub New ()

Applies to

Fact(String, String)

Initializes a new instance of the Fact class.

public Fact (string key = default, string value = default);
new Microsoft.Bot.Schema.Fact : string * string -> Microsoft.Bot.Schema.Fact
Public Sub New (Optional key As String = Nothing, Optional value As String = Nothing)

Parameters

key
String

The key for this Fact.

value
String

The value for this Fact.

Applies to