C# Class System.Linq.Expressions.CatchBlock

Mostra file Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
ToString ( ) : string

Returns a String that represents the current Object.

Update ( System.Linq.Expressions.ParameterExpression variable, Expression filter, Expression body ) : CatchBlock

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

Private Methods

Method Description
CatchBlock ( Type test, System.Linq.Expressions.ParameterExpression variable, Expression body, Expression filter ) : System.Diagnostics

Method Details

ToString() public method

Returns a String that represents the current Object.
public ToString ( ) : string
return string

Update() public method

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
public Update ( System.Linq.Expressions.ParameterExpression variable, Expression filter, Expression body ) : CatchBlock
variable System.Linq.Expressions.ParameterExpression The property of the result.
filter Expression The property of the result.
body Expression The property of the result.
return CatchBlock