Skip to content

Commit 285110d

Browse files
Ryan Nowakrynowak
Ryan Nowak
authored andcommitted
Add missing ref-assembly for header propagation
I think this was missed because the PR predates ref assemblies :)
1 parent 9d8990a commit 285110d

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- This file is automatically generated. -->
2+
<Project Sdk="Microsoft.NET.Sdk">
3+
<PropertyGroup>
4+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
5+
</PropertyGroup>
6+
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
7+
<Compile Include="Microsoft.AspNetCore.HeaderPropagation.netcoreapp3.0.cs" />
8+
<Reference Include="Microsoft.AspNetCore.Http" />
9+
<Reference Include="Microsoft.Extensions.Http" />
10+
<Reference Include="Microsoft.Extensions.DependencyInjection" />
11+
</ItemGroup>
12+
</Project>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
namespace Microsoft.AspNetCore.Builder
5+
{
6+
public static partial class HeaderPropagationApplicationBuilderExtensions
7+
{
8+
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseHeaderPropagation(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
9+
}
10+
}
11+
namespace Microsoft.AspNetCore.HeaderPropagation
12+
{
13+
public partial class HeaderPropagationEntry
14+
{
15+
public HeaderPropagationEntry() { }
16+
public Microsoft.Extensions.Primitives.StringValues DefaultValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
17+
public string OutboundHeaderName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
18+
public System.Func<string, Microsoft.AspNetCore.Http.HttpContext, Microsoft.Extensions.Primitives.StringValues> ValueFactory { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
19+
}
20+
public partial class HeaderPropagationMessageHandler : System.Net.Http.DelegatingHandler
21+
{
22+
public HeaderPropagationMessageHandler(Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationOptions> options, Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationValues values) { }
23+
protected override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
24+
}
25+
public partial class HeaderPropagationMiddleware
26+
{
27+
public HeaderPropagationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationOptions> options, Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationValues values) { }
28+
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
29+
}
30+
public partial class HeaderPropagationOptions
31+
{
32+
public HeaderPropagationOptions() { }
33+
public System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationEntry> Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
34+
}
35+
public partial class HeaderPropagationValues
36+
{
37+
public HeaderPropagationValues() { }
38+
public System.Collections.Generic.IDictionary<string, Microsoft.Extensions.Primitives.StringValues> Headers { get { throw null; } }
39+
}
40+
}
41+
namespace Microsoft.Extensions.DependencyInjection
42+
{
43+
public static partial class HeaderPropagationHttpClientBuilderExtensions
44+
{
45+
public static Microsoft.Extensions.DependencyInjection.IHttpClientBuilder AddHeaderPropagation(this Microsoft.Extensions.DependencyInjection.IHttpClientBuilder builder) { throw null; }
46+
}
47+
public static partial class HeaderPropagationServiceCollectionExtensions
48+
{
49+
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddHeaderPropagation(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
50+
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddHeaderPropagation(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action<Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationOptions> configureOptions) { throw null; }
51+
}
52+
}

0 commit comments

Comments
 (0)