A node that represents an explicit reference or boxing conversion where null is supplied if the conversion fails.

Namespace:  Sasa.Linq
Assembly:  Sasa.Linq (in Sasa.Linq.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Function TypeAs ( _
	e As UnaryExpression _
) As T
C#
public abstract T TypeAs(
	UnaryExpression e
)
Visual C++
public:
virtual T TypeAs(
	UnaryExpression^ e
) abstract
JavaScript
function typeAs(e);

Parameters

e
Type: System.Linq.Expressions..::.UnaryExpression
The expression to process.

Return Value

The value computed from the expression.

See Also