BlobExtractionMode Struct

Definition

Defines which parts of a blob will be indexed by the blob storage indexer. https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage

[Newtonsoft.Json.JsonConverter(typeof(Microsoft.Azure.Search.Serialization.ExtensibleEnumConverter<Microsoft.Azure.Search.Models.BlobExtractionMode>))]
public struct BlobExtractionMode : IEquatable<Microsoft.Azure.Search.Models.BlobExtractionMode>
[<Newtonsoft.Json.JsonConverter(typeof(Microsoft.Azure.Search.Serialization.ExtensibleEnumConverter<Microsoft.Azure.Search.Models.BlobExtractionMode>))>]
type BlobExtractionMode = struct
Public Structure BlobExtractionMode
Implements IEquatable(Of BlobExtractionMode)
Inheritance
BlobExtractionMode
Attributes
Newtonsoft.Json.JsonConverterAttribute
Implements

Fields

AllMetadata

Specifies that storage metadata and the content-type specific metadata extracted from the blob content will be indexed. https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage#content-type-specific-metadata-properties

ContentAndMetadata

Specifies that all metadata and textual content extracted from the blob will be indexed. This is the default value.
https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage#document-extraction-process

StorageMetadata

Specifies that only the standard blob properties and user-specified metadata will be indexed. https://docs.microsoft.com/azure/storage/storage-properties-metadata

Methods

Equals(BlobExtractionMode)

Compares the BlobExtractionMode for equality with another BlobExtractionMode.

Equals(Object)

Determines whether the specified object is equal to the current object.

GetHashCode()

Serves as the default hash function.

ToString()

Returns a string representation of the BlobExtractionMode.

Operators

Equality(BlobExtractionMode, BlobExtractionMode)

Compares two BlobExtractionMode values for equality.

Explicit(BlobExtractionMode to String)

Defines explicit conversion from BlobExtractionMode to string.

Implicit(String to BlobExtractionMode)

Defines implicit conversion from string to BlobExtractionMode.

Inequality(BlobExtractionMode, BlobExtractionMode)

Compares two BlobExtractionMode values for inequality.

Applies to