public HttpParallelWorkersLauncher(int count, Uri uri, IBinaryProfiler profiler) { _count = count; _uri = uri; _profiler = profiler ?? throw new ArgumentNullException(nameof(profiler)); }
public Request(Uri uri, IBinaryProfiler responseProfiler) { _profiler = responseProfiler ?? throw new ArgumentNullException(nameof(responseProfiler)); Uri = uri; }
public BinaryProfilerStreamMonitor(IBinaryProfiler profiler, bool isWriting, object streamSyncRoot = null) { _profiler = profiler ?? throw new ArgumentNullException(nameof(profiler)); _isWriting = isWriting; _streamSyncRoot = streamSyncRoot ?? new object(); }
private ApplicationContext() { _defaultBinaryProfiler = new SimpleCliBinaryProfiler(0, 0); }