Share via


Thing Constructors

Definition

Overloads

Thing()

Initializes a new instance of the Thing class.

Thing(String, String)

Initializes a new instance of the Thing class.

Thing()

Initializes a new instance of the Thing class.

public Thing ();
Public Sub New ()

Applies to

Thing(String, String)

Initializes a new instance of the Thing class.

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

Parameters

type
String

The type of the thing.

name
String

The name of the thing.

Applies to