Exemplo n.º 1
0
//JAVA TO C# CONVERTER WARNING: 'final' parameters are ignored unless the option to convert to C# 7.2 'in' parameters is selected:
//ORIGINAL LINE: public CypherResultRepresentation(final org.neo4j.graphdb.Result result, boolean includeStats, boolean includePlan)
        public CypherResultRepresentation(Result result, bool includeStats, bool includePlan) : base(RepresentationType.String)
        {
            _resultRepresentation = CreateResultRepresentation(result);
            _columns             = ListRepresentation.String(result.Columns());
            _statsRepresentation = includeStats ? new CypherStatisticsRepresentation(result.QueryStatistics) : null;
            _plan = includePlan ? CypherPlanRepresentation.NewFromProvider(PlanProvider(result)) : null;
        }
Exemplo n.º 2
0
 public IterableWrapperAnonymousInnerClass(CypherPlanRepresentation outerInstance, IList <ExecutionPlanDescription> getChildren) : base(getChildren)
 {
     this.outerInstance = outerInstance;
 }