ItemWarning 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
ItemWarning() |
Initializes a new instance of the ItemWarning class. |
ItemWarning(String, String, String, String, String) |
Initializes a new instance of the ItemWarning class. |
ItemWarning()
- Source:
- ItemWarning.cs
Initializes a new instance of the ItemWarning class.
public ItemWarning ();
Public Sub New ()
Applies to
ItemWarning(String, String, String, String, String)
- Source:
- ItemWarning.cs
Initializes a new instance of the ItemWarning class.
public ItemWarning (string key = default, string message = default, string name = default, string details = default, string documentationLink = default);
new Microsoft.Azure.Search.Models.ItemWarning : string * string * string * string * string -> Microsoft.Azure.Search.Models.ItemWarning
Public Sub New (Optional key As String = Nothing, Optional message As String = Nothing, Optional name As String = Nothing, Optional details As String = Nothing, Optional documentationLink As String = Nothing)
Parameters
- key
- String
The key of the item which generated a warning.
- message
- String
The message describing the warning that occurred while processing the item.
- name
- String
The name of the source at which the warning originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available.
- details
- String
Additional, verbose details about the warning to assist in debugging the indexer. This may not be always available.
- documentationLink
- String
A link to a troubleshooting guide for these classes of warnings. This may not be always available.
Applies to
Azure SDK for .NET