共用方式為


Observable.Throw < TResult > 方法 (例外狀況)

傳回以例外狀況終止的可觀察序列。

Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (

Syntax

'Declaration
Public Shared Function Throw(Of TResult) ( _
    exception As Exception _
) As IObservable(Of TResult)
'Usage
Dim exception As Exception
Dim returnValue As IObservable(Of TResult)

returnValue = Observable.Throw(exception)
public static IObservable<TResult> Throw<TResult>(
    Exception exception
)
public:
generic<typename TResult>
static IObservable<TResult>^ Throw(
    Exception^ exception
)
static member Throw : 
        exception:Exception -> IObservable<'TResult> 
JScript does not support generic types and methods.

類型參數

  • TResult
    結果的類型。

參數

  • exception
    類型: System.Exception
    用於序列終止的例外狀況物件。

傳回值

類型:System.IObservable< TResult>
以指定的例外狀況物件例外終止的可觀察序列。

另請參閱

參考

Observable 類別

擲回多載

System.Reactive.Linq 命名空間