Share via


FacetResult Constructors

Definition

Overloads

FacetResult()

Initializes a new instance of the FacetResult class.

FacetResult(String, Int64, Int32, Object)

Initializes a new instance of the FacetResult class.

FacetResult()

Initializes a new instance of the FacetResult class.

public FacetResult ();
Public Sub New ()

Applies to

FacetResult(String, Int64, Int32, Object)

Initializes a new instance of the FacetResult class.

public FacetResult (string expression, long totalRecords, int count, object data);
new Microsoft.Azure.Management.ResourceGraph.Models.FacetResult : string * int64 * int * obj -> Microsoft.Azure.Management.ResourceGraph.Models.FacetResult
Public Sub New (expression As String, totalRecords As Long, count As Integer, data As Object)

Parameters

expression
String

Facet expression, same as in the corresponding facet request.

totalRecords
Int64

Number of total records in the facet results.

count
Int32

Number of records returned in the facet response.

data
Object

A JObject array or Table containing the desired facets. Only present if the facet is valid.

Applies to