Share via


ExternalRequest.DataIs Method

Definition

Overloads

Name Description
DataIs<TValue>(TValue)

Determines whether the underlying data is of the specified type and outputs the value if it is.

DataIs<TValue>()

Determines whether the underlying data is of the specified type.

DataIs<TValue>(TValue)

Determines whether the underlying data is of the specified type and outputs the value if it is.

public bool DataIs<TValue>(out TValue? value);
member this.DataIs : 'Value -> bool
Public Function DataIs(Of TValue) (ByRef value As TValue) As Boolean

Type Parameters

TValue

The type to compare with the underlying data.

Parameters

value
TValue

Returns

true if the underlying data is of type TValue; otherwise, false.

Applies to

DataIs<TValue>()

Determines whether the underlying data is of the specified type.

public bool DataIs<TValue>();
member this.DataIs : unit -> bool
Public Function DataIs(Of TValue) () As Boolean

Type Parameters

TValue

The type to compare with the underlying data.

Returns

true if the underlying data is of type TValue; otherwise, false.

Applies to