Megosztás a következőn keresztül:


WafPolicySettings.DefaultCustomBlockResponseBody Property

Definition

If the action type is block, customer can override the response body. The body must be specified in base64 encoding.

To assign an object to this property use FromObjectAsJson<T>(T, JsonSerializerOptions).

To assign an already formatted json string to this property use FromString(String).

Examples:

  • BinaryData.FromObjectAsJson("foo"): Creates a payload of "foo".
  • BinaryData.FromString("\"foo\""): Creates a payload of "foo".
  • BinaryData.FromObjectAsJson(new { key = "value" }): Creates a payload of { "key": "value" }.
  • BinaryData.FromString("{\"key\": \"value\"}"): Creates a payload of { "key": "value" }.

public BinaryData DefaultCustomBlockResponseBody { get; set; }
member this.DefaultCustomBlockResponseBody : BinaryData with get, set
Public Property DefaultCustomBlockResponseBody As BinaryData

Property Value

Applies to