Search Results for

    Show / Hide Table of Contents

    Class BaseResultOfBusinessProcess

    Base class for search results

    Inheritance
    System.Object
    BaseResultOfBusinessProcess
    SearchBehaviorBaseResultOfBusinessProcess
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class BaseResultOfBusinessProcess

    Properties

    ElapsedMilliseconds

    The search execution time in milliseconds.

    Declaration
    public long ElapsedMilliseconds { get; set; }
    Property Value
    System.Int64

    PageToken

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

    Declaration
    public string PageToken { get; set; }
    Property Value
    System.String

    Results

    The matched documents.

    Declaration
    public ICollection<BusinessProcess> Results { get; set; }
    Property Value
    System.Collections.Generic.ICollection<BusinessProcess>

    TotalResults

    The total number of matching documents.

    Declaration
    public long TotalResults { get; set; }
    Property Value
    System.Int64

    Methods

    FromJson(String)

    Declaration
    public static BaseResultOfBusinessProcess FromJson(string data)
    Parameters
    System.String data

    Returns
    BaseResultOfBusinessProcess

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX