DetectedTerms Constructors

Definition

Overloads

DetectedTerms()

Initializes a new instance of the DetectedTerms class.

DetectedTerms(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the DetectedTerms class.

DetectedTerms()

Initializes a new instance of the DetectedTerms class.

public DetectedTerms ();
Public Sub New ()

Applies to

DetectedTerms(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the DetectedTerms class.

public DetectedTerms (int? index = default, int? originalIndex = default, int? listId = default, string term = default);
new Microsoft.Azure.CognitiveServices.ContentModerator.Models.DetectedTerms : Nullable<int> * Nullable<int> * Nullable<int> * string -> Microsoft.Azure.CognitiveServices.ContentModerator.Models.DetectedTerms
Public Sub New (Optional index As Nullable(Of Integer) = Nothing, Optional originalIndex As Nullable(Of Integer) = Nothing, Optional listId As Nullable(Of Integer) = Nothing, Optional term As String = Nothing)

Parameters

index
Nullable<Int32>

Index(Location) of the detected profanity term in the input text content.

originalIndex
Nullable<Int32>

Original Index(Location) of the detected profanity term in the input text content.

listId
Nullable<Int32>

Matched Terms list Id.

term
String

Detected profanity term.

Applies to