IndexAction Constructor

 

Applies To: Microsoft Azure

Namespace:   Microsoft.Azure.Search.Models
Assembly:  Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)

Overload List

Name Description
System_CAPS_pubmethod IndexAction()

Initializes a new instance of the IndexAction class.

System_CAPS_pubmethod IndexAction(Document)

Initializes a new instance of the IndexAction class.

System_CAPS_pubmethod 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

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

Return to top