Share via


DeleteProperty Constructors

Definition

Overloads

DeleteProperty(String, Int32)

Initializes a new instance of the DeleteProperty class.

DeleteProperty(String, String, Int32)

Initializes a new instance of the DeleteProperty class.

DeleteProperty(String, Int32)

Initializes a new instance of the DeleteProperty class.

public DeleteProperty (string callerPath = "", int callerLine = 0);
new Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.DeleteProperty : string * int -> Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.DeleteProperty
Public Sub New (Optional callerPath As String = "", Optional callerLine As Integer = 0)

Parameters

callerPath
String

Optional, source file full path.

callerLine
Int32

Optional, line number in source file.

Applies to

DeleteProperty(String, String, Int32)

Initializes a new instance of the DeleteProperty class.

public DeleteProperty (string property, string callerPath = "", int callerLine = 0);
new Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.DeleteProperty : string * string * int -> Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.DeleteProperty
Public Sub New (property As String, Optional callerPath As String = "", Optional callerLine As Integer = 0)

Parameters

property
String

Property to delete from memory.

callerPath
String

Optional, source file full path.

callerLine
Int32

Optional, line number in source file.

Applies to