StoredProcedure.Body Property

Definition

Gets or sets the body of the Azure Cosmos DB stored procedure.

[Newtonsoft.Json.JsonProperty(PropertyName="body")]
public string Body { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="body")>]
member this.Body : string with get, set
Public Property Body As String

Property Value

The body of the stored procedure.

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

Must be a valid JavaScript function. For e.g. "function () { getContext().getResponse().setBody('Hello World!'); }"

Applies to