6 implementations of Properties
Microsoft.AspNetCore (2)
BootstrapHostBuilder.cs (1)
39public IDictionary<object, object> Properties => Context.Properties;
ConfigureHostBuilder.cs (1)
36public IDictionary<object, object> Properties => _context.Properties;
Microsoft.AspNetCore.Mvc.Testing (1)
DeferredHostBuilder.cs (1)
13public IDictionary<object, object> Properties { get; } = new Dictionary<object, object>();
Microsoft.Extensions.Hosting (2)
HostApplicationBuilder.cs (1)
340public IDictionary<object, object> Properties => _hostApplicationBuilder._hostBuilderContext.Properties;
HostBuilder.cs (1)
54public IDictionary<object, object> Properties { get; } = new Dictionary<object, object>();
Microsoft.Extensions.Hosting.Testing (1)
FakeHostBuilder.cs (1)
93public IDictionary<object, object> Properties => _builder.Properties;
4 references to Properties
Microsoft.AspNetCore.Hosting (1)
GenericHost\GenericWebHostBuilder.cs (1)
250_builder.Properties[typeof(ConfigureContainerBuilder)] = configureContainerBuilder;
Microsoft.AspNetCore.Mvc.Testing (1)
DeferredHostBuilder.cs (1)
32b.Properties[pair.Key] = pair.Value;
Microsoft.Extensions.Hosting.Testing (1)
FakeHostBuilder.cs (1)
93public IDictionary<object, object> Properties => _builder.Properties;
Microsoft.Extensions.Hosting.Testing.Tests (1)
FakeHostBuilderTests.cs (1)
90builderMock.SetupGet(x => x.Properties)