FieldBuilderIgnoreAttribute Class
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.
Indicates that the target property should be ignored by FieldBuilder.
[System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public class FieldBuilderIgnoreAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)>]
type FieldBuilderIgnoreAttribute = class
inherit Attribute
Public Class FieldBuilderIgnoreAttribute
Inherits Attribute
- Inheritance
-
FieldBuilderIgnoreAttribute
- Attributes
Remarks
This attribute is useful in situations where a property definition doesn't cleanly map to a SearchField object, but its values still need to be converted to and from JSON. In that case, JsonIgnoreAttribute can't be used since it would disable JSON conversion. An example of a scenario where this is useful is when mapping between a string field in Azure Cognitive Search and an enum property.
Constructors
FieldBuilderIgnoreAttribute() |
Applies to
Azure SDK for .NET