IndexAction Constructor
Applies To: Microsoft Azure
Namespace: Microsoft.Azure.Search.Models
Assembly: Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)
Overload List
| Name | Description | |
|---|---|---|
![]() |
IndexAction() | Initializes a new instance of the IndexAction class. |
![]() |
IndexAction(Document) | Initializes a new instance of the IndexAction class. |
![]() |
IndexAction(IndexActionType, Document) | Initializes a new instance of the IndexAction class with the given action type. |
See Also
IndexAction Class
Microsoft.Azure.Search.Models Namespace
Return to top
IndexAction Constructor ()
Initializes a new instance of the IndexAction class.
Syntax
public IndexAction()
public:
IndexAction()
new : unit -> IndexAction
Public Sub New
Return to top
IndexAction Constructor (Document)
Initializes a new instance of the IndexAction class.
Syntax
public IndexAction(
Document document
)
public:
IndexAction(
Document^ document
)
new :
document:Document -> IndexAction
Public Sub New (
document As Document
)
Parameters
document
Type: Microsoft.Azure.Search.Models.DocumentThe document on which the action will be performed.
Return to top
IndexAction Constructor (IndexActionType, Document)
Initializes a new instance of the IndexAction class with the given action type.
Syntax
public IndexAction(
IndexActionType actionType,
Document document
)
public:
IndexAction(
IndexActionType actionType,
Document^ document
)
new :
actionType:IndexActionType *
document:Document -> IndexAction
Public Sub New (
actionType As IndexActionType,
document As Document
)
Parameters
actionType
Type: Microsoft.Azure.Search.Models.IndexActionTypeThe type of action to perform on the document.
document
Type: Microsoft.Azure.Search.Models.DocumentThe document on which the action will be performed.
Return to top
.jpeg)