public ProfilingOptions(bool includeQueryStatistics, bool profileConnections, IProfileOutput customProfileOutput) { CustomProfileOutput = customProfileOutput; IncludeQueryStatistics = includeQueryStatistics; ProfileConnections = profileConnections; ProfilingOutput = ProfilingOutput.Custom; }
public GenericProfiler(ProfilingOptions implementation) { Implementation = implementation; _profileOutput = Implementation.CreateOutput(); }