ProblemDetails.Title Property

Definition

A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization(e.g., using proactive content negotiation; see[RFC7231], Section 3.4).

public:
 property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public string Title { get; set; }
[Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore, PropertyName="title")]
public string Title { get; set; }
[System.Text.Json.Serialization.JsonPropertyName("title")]
public string Title { get; set; }
[System.Text.Json.Serialization.JsonPropertyName("title")]
public string? Title { get; set; }
[System.Text.Json.Serialization.JsonIgnore(Condition=System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull)]
[System.Text.Json.Serialization.JsonPropertyOrder(-4)]
public string? Title { get; set; }
member this.Title : string with get, set
[<Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore, PropertyName="title")>]
member this.Title : string with get, set
[<System.Text.Json.Serialization.JsonPropertyName("title")>]
member this.Title : string with get, set
[<System.Text.Json.Serialization.JsonIgnore(Condition=System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull)>]
[<System.Text.Json.Serialization.JsonPropertyOrder(-4)>]
member this.Title : string with get, set
Public Property Title As String

Property Value

Attributes

Applies to