Implemented interface member:
property
Properties
Microsoft.Extensions.Hosting.IHostBuilder.Properties
6 references to Properties
Microsoft.AspNetCore.Tests (6)
WebApplicationTests.cs (6)
1344
builder.Host.
Properties
["lowercase"] = nameof(WebApplicationTests);
1346
Assert.Equal(nameof(WebApplicationTests), builder.Host.
Properties
["lowercase"]);
1347
Assert.False(builder.Host.
Properties
.ContainsKey("Lowercase"));
2183
builder.Host.
Properties
["hello"] = "world";
2519
builder.Host.
Properties
["MyProp"] = 1;
2522
Assert.Same(builder.Host.
Properties
, iHostApplicationBuilder.Properties);