5 implementations of StartAsync
Microsoft.AspNetCore.Http (1)
StreamResponseBodyFeature.cs (1)
100public virtual Task StartAsync(CancellationToken cancellationToken = default)
Microsoft.AspNetCore.HttpLogging (1)
ResponseBufferingStream.cs (1)
199public async Task StartAsync(CancellationToken token = default)
Microsoft.AspNetCore.ResponseCompression (1)
ResponseCompressionBody.cs (1)
312public Task StartAsync(CancellationToken token = default)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
321Task IHttpResponseBodyFeature.StartAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
242public Task StartAsync(CancellationToken cancellationToken = default)
5 references to StartAsync
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpResponse.cs (1)
162return HttpResponseBodyFeature.StartAsync(cancellationToken);
Microsoft.AspNetCore.HttpLogging (2)
HttpLoggingFields.cs (1)
98/// or when <see cref="IHttpResponseBodyFeature.StartAsync(System.Threading.CancellationToken)"/>
ResponseBufferingStream.cs (1)
202await _innerBodyFeature.StartAsync(token);
Microsoft.AspNetCore.ResponseCompression (1)
ResponseCompressionBody.cs (1)
315return _innerBodyFeature.StartAsync(token);
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
244return _original.StartAsync(cancellationToken);