Qbservable.Any<TSource> Method (IQbservable<TSource>)
Determines whether a queryable observable sequence contains any elements.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Any(Of TSource) ( _
source As IQbservable(Of TSource) _
) As IQbservable(Of Boolean)
'Usage
Dim source As IQbservable(Of TSource)
Dim returnValue As IQbservable(Of Boolean)
returnValue = source.Any()
public static IQbservable<bool> Any<TSource>(
this IQbservable<TSource> source
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<bool>^ Any(
IQbservable<TSource>^ source
)
static member Any :
source:IQbservable<'TSource> -> IQbservable<bool>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.Reactive.Linq.IQbservable<TSource>
A queryable observable sequence to check for non-emptiness.
Return Value
Type: System.Reactive.Linq.IQbservable<Boolean>
True if a queryable observable sequence contains any elements; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .