EditArray Constructors
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
EditArray(String, Int32) |
Initializes a new instance of the EditArray class. |
EditArray(EditArray+ArrayChangeType, String, Object, String) |
Initializes a new instance of the EditArray class. |
EditArray(String, Int32)
Initializes a new instance of the EditArray class.
public EditArray (string callerPath = "", int callerLine = 0);
new Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.EditArray : string * int -> Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.EditArray
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
EditArray(EditArray+ArrayChangeType, String, Object, String)
Initializes a new instance of the EditArray class.
public EditArray (Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.EditArray.ArrayChangeType changeType, string arrayProperty = default, object value = default, string resultProperty = default);
new Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.EditArray : Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.EditArray.ArrayChangeType * string * obj * string -> Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.EditArray
Public Sub New (changeType As EditArray.ArrayChangeType, Optional arrayProperty As String = Nothing, Optional value As Object = Nothing, Optional resultProperty As String = Nothing)
Parameters
- changeType
- EditArray.ArrayChangeType
change type.
- arrayProperty
- String
array property (optional).
- value
- Object
value to insert.
- resultProperty
- String
output property to put Pop/Take into.