Search Results for

    Show / Hide Table of Contents

    Class BaseResultOfPermissionSet

    Base class for search results

    Inheritance
    object
    BaseResultOfPermissionSet
    SearchBehaviorBaseResultOfPermissionSet
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class BaseResultOfPermissionSet

    Properties

    ElapsedMilliseconds

    The search execution time in milliseconds.

    Declaration
    [JsonProperty("elapsedMilliseconds", Required = Required.Always)]
    public long ElapsedMilliseconds { get; set; }
    Property Value
    long

    PageToken

    An optional token to access the next page of results for those endpoints that support backend scrolling logic.

    Declaration
    [JsonProperty("pageToken", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string PageToken { get; set; }
    Property Value
    string

    Results

    The matched documents.

    Declaration
    [JsonProperty("results", Required = Required.Always)]
    [Required]
    public ICollection<PermissionSet> Results { get; set; }
    Property Value
    ICollection<PermissionSet>

    TotalResults

    The total number of matching documents.

    Declaration
    [JsonProperty("totalResults", Required = Required.Always)]
    public long TotalResults { get; set; }
    Property Value
    long

    Methods

    FromJson(string)

    Declaration
    public static BaseResultOfPermissionSet FromJson(string data)
    Parameters
    string data

    Returns
    BaseResultOfPermissionSet

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX