ProblemDetails.Status 속성

정의

문제가 발생하기 위해 원본 서버에서 생성한 HTTP 상태 코드([RFC7231], 섹션 6)입니다.

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)

속성 값

특성

적용 대상