Table of Contents

Class ValidationStatus

Namespace
Azure.Iot.Operations.Services.EdgeRegistry.Models
Assembly
Azure.Iot.Operations.Services.dll

Indicates whether validation was performed, and if not, the reason why not (e.g., "unsupported format", "validation disabled").

public class ValidationStatus
Inheritance
ValidationStatus
Inherited Members

Properties

Reason

If validation was not performed, the reason why not. MUST be present if validated is false. MUST NOT be present if validated is true.

public string? Reason { get; set; }

Property Value

string

Validated

True if validation was performed and the entity adheres to the rules; false if validation was not performed.

public required bool Validated { get; set; }

Property Value

bool