Search Results for

    Show / Hide Table of Contents

    Interface IQbservableProvider

    Defines methods to create and execute queries that are described by an IQbservable object.

    Namespace: System.Reactive.Linq
    Assembly: System.Reactive.Interfaces.dll
    Syntax
    public interface IQbservableProvider

    Methods

    | Improve this Doc View Source

    CreateQuery<TResult>(Expression)

    Constructs an IQbservable>TResult< object that can evaluate the query represented by a specified expression tree.

    Declaration
    IQbservable<TResult> CreateQuery<TResult>(Expression expression)
    Parameters
    Type Name Description
    Expression expression

    Expression tree representing the query.

    Returns
    Type Description
    IQbservable<TResult>

    IQbservable object that can evaluate the given query expression.

    Type Parameters
    Name Description
    TResult

    The type of the elements of the System.Reactive.Linq.IQbservable<T> that is returned.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX