SoftDeleteColumnDeletionDetectionPolicy 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
SoftDeleteColumnDeletionDetectionPolicy() |
Initializes a new instance of the SoftDeleteColumnDeletionDetectionPolicy class. |
SoftDeleteColumnDeletionDetectionPolicy(String, Object) |
Initializes a new instance of the SoftDeleteColumnDeletionDetectionPolicy class with required arguments. |
SoftDeleteColumnDeletionDetectionPolicy(String, String) |
Initializes a new instance of the SoftDeleteColumnDeletionDetectionPolicy class. |
SoftDeleteColumnDeletionDetectionPolicy()
Initializes a new instance of the SoftDeleteColumnDeletionDetectionPolicy class.
public SoftDeleteColumnDeletionDetectionPolicy ();
Public Sub New ()
Applies to
SoftDeleteColumnDeletionDetectionPolicy(String, Object)
Initializes a new instance of the SoftDeleteColumnDeletionDetectionPolicy class with required arguments.
public SoftDeleteColumnDeletionDetectionPolicy (string softDeleteColumnName, object softDeleteMarkerValue);
new Microsoft.Azure.Search.Models.SoftDeleteColumnDeletionDetectionPolicy : string * obj -> Microsoft.Azure.Search.Models.SoftDeleteColumnDeletionDetectionPolicy
Public Sub New (softDeleteColumnName As String, softDeleteMarkerValue As Object)
Parameters
- softDeleteColumnName
- String
Specifies the name of the column to use for soft-deletion detection.
- softDeleteMarkerValue
- Object
Specifies the marker value that indentifies an item as deleted.
Applies to
SoftDeleteColumnDeletionDetectionPolicy(String, String)
Initializes a new instance of the SoftDeleteColumnDeletionDetectionPolicy class.
public SoftDeleteColumnDeletionDetectionPolicy (string softDeleteColumnName = default, string softDeleteMarkerValue = default);
new Microsoft.Azure.Search.Models.SoftDeleteColumnDeletionDetectionPolicy : string * string -> Microsoft.Azure.Search.Models.SoftDeleteColumnDeletionDetectionPolicy
Public Sub New (Optional softDeleteColumnName As String = Nothing, Optional softDeleteMarkerValue As String = Nothing)
Parameters
- softDeleteColumnName
- String
The name of the column to use for soft-deletion detection.
- softDeleteMarkerValue
- String
The marker value that identifies an item as deleted.
Applies to
Azure SDK for .NET