Observable.Generate<TState, TResult> Method (TState, Func<TState, Boolean>, Func<TState, TResult>, Func<TState, TState>)

Namespace:  Microsoft.Phone.Reactive
Assembly:  Microsoft.Phone.Reactive (in Microsoft.Phone.Reactive.dll)

Syntax

'Declaration
Public Shared Function Generate(Of TState, TResult) ( _
    initialState As TState, _
    condition As Func(Of TState, Boolean), _
    resultSelector As Func(Of TState, TResult), _
    iterate As Func(Of TState, TState) _
) As IObservable(Of TResult)
public static IObservable<TResult> Generate<TState, TResult>(
    TState initialState,
    Func<TState, bool> condition,
    Func<TState, TResult> resultSelector,
    Func<TState, TState> iterate
)
public:
generic<typename TState, typename TResult>
static IObservable<TResult>^ Generate(
    TState initialState, 
    Func<TState, bool>^ condition, 
    Func<TState, TResult>^ resultSelector, 
    Func<TState, TState>^ iterate
)
static member Generate : 
        initialState:'TState * 
        condition:Func<'TState, bool> * 
        resultSelector:Func<'TState, 'TResult> * 
        iterate:Func<'TState, 'TState> -> IObservable<'TResult> 

Type Parameters

  • TState
  • TResult

Parameters

  • initialState
    Type: TState

Return Value

Type: System.IObservable<TResult>

Version Information

.NET for Windows Phone apps

Supported in: Windows Phone 8, Silverlight 8.1

.NET Framework Security

See Also

Reference

Observable Class

Generate Overload

Microsoft.Phone.Reactive Namespace