ProblemDetails.Status Property

Definition

The HTTP status code([RFC7231], Section 6) generated by the origin server for this occurrence of the problem.

public:
 property Nullable<int> Status { Nullable<int> get(); void set(Nullable<int> value); };
public int? Status { get; set; }
[Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore, PropertyName="status")]
public int? Status { get; set; }
[System.Text.Json.Serialization.JsonPropertyName("status")]
public int? Status { get; set; }
[System.Text.Json.Serialization.JsonIgnore(Condition=System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull)]
[System.Text.Json.Serialization.JsonPropertyOrder(-3)]
public int? Status { get; set; }
member this.Status : Nullable<int> with get, set
[<Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore, PropertyName="status")>]
member this.Status : Nullable<int> with get, set
[<System.Text.Json.Serialization.JsonPropertyName("status")>]
member this.Status : Nullable<int> with get, set
[<System.Text.Json.Serialization.JsonIgnore(Condition=System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull)>]
[<System.Text.Json.Serialization.JsonPropertyOrder(-3)>]
member this.Status : Nullable<int> with get, set
Public Property Status As Nullable(Of Integer)

Property Value

Attributes

Applies to