Class GraphqlRequest
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Behaviors.Http.Bindings
Assembly: Cephalon.Behaviors.Http.dll
Represents a parsed GraphQL request containing the query string and optional variables.
public sealed record GraphqlRequest : IEquatable<GraphqlRequest>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”GraphqlRequest(string, JsonElement)
Section titled “ GraphqlRequest(string, JsonElement)”Represents a parsed GraphQL request containing the query string and optional variables.
public GraphqlRequest(string Query, JsonElement Variables)Parameters
Section titled “Parameters”Query string
The GraphQL query string.
Variables JsonElement
The optional variables document.
Properties
Section titled “Properties”The GraphQL query string.
public string Query { get; init; }Property Value
Section titled “Property Value”Variables
Section titled “ Variables”The optional variables document.
public JsonElement Variables { get; init; }