System.Linq.Expressions.TryExpression.TryExpression C# (CSharp) Méthode

TryExpression() private méthode

private TryExpression ( Type type, Expression body, Expression @finally, Expression fault, ReadOnlyCollection handlers ) : System.Collections.Generic
type Type
body Expression
@finally Expression
fault Expression
handlers ReadOnlyCollection
Résultat System.Collections.Generic
        internal TryExpression(Type type, Expression body, Expression @finally, Expression fault, ReadOnlyCollection<CatchBlock> handlers)
        {
            Type = type;
            Body = body;
            Handlers = handlers;
            Finally = @finally;
            Fault = fault;
        }