次の方法で共有


Request Class

Definition

A request.

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.RequestTypeConverter))]
public class Request : Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IRequest
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.RequestTypeConverter))>]
type Request = class
    interface IRequest
    interface IJsonSerializable
Public Class Request
Implements IRequest
Inheritance
Request
Attributes
Implements

Constructors

Request()

Creates an new Request instance.

Properties

Header

A list of all the headers attached to the request.

Method

The HTTP method used for the request.

Uri

The destination for the request.

Methods

DeserializeFromDictionary(IDictionary)

Deserializes a IDictionary into an instance of Request.

DeserializeFromPSObject(PSObject)

Deserializes a PSObject into an instance of Request.

FromJson(JsonNode)

Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IRequest.

FromJsonString(String)

Creates a new instance of Request, deserializing the content from a json string.

ToJson(JsonObject, SerializationMode)

Serializes this instance of Request into a JsonNode.

ToJsonString()

Serializes this instance to a json string.

Applies to