MarkdownParsingSubmode Struct
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.
Specifies the submode that will determine whether a markdown file will be parsed into exactly one search document or multiple search documents. Default is oneToMany
.
public readonly struct MarkdownParsingSubmode : IEquatable<Azure.Search.Documents.Indexes.Models.MarkdownParsingSubmode>
type MarkdownParsingSubmode = struct
Public Structure MarkdownParsingSubmode
Implements IEquatable(Of MarkdownParsingSubmode)
- Inheritance
-
MarkdownParsingSubmode
- Implements
Constructors
MarkdownParsingSubmode(String) |
Initializes a new instance of MarkdownParsingSubmode. |
Properties
OneToMany |
Indicates that each section of the markdown file (up to a specified depth) will be parsed into individual search documents. This can result in a single markdown file producing multiple search documents. This is the default sub-mode. |
OneToOne |
Indicates that each markdown file will be parsed into a single search document. |
Methods
Equals(MarkdownParsingSubmode) |
Indicates whether the current object is equal to another object of the same type. |
ToString() |
Returns the fully qualified type name of this instance. |
Operators
Equality(MarkdownParsingSubmode, MarkdownParsingSubmode) |
Determines if two MarkdownParsingSubmode values are the same. |
Implicit(String to MarkdownParsingSubmode) |
Converts a String to a MarkdownParsingSubmode. |
Inequality(MarkdownParsingSubmode, MarkdownParsingSubmode) |
Determines if two MarkdownParsingSubmode values are not the same. |