ConventionHostBuilderExtensions.

GetOrAdd<T>(IConventionHostBuilder, string, Func<T>) Method

Summary

Get a value by key from the context

Syntax

public static T GetOrAdd<T>(this IConventionHostBuilder builder, string key, Func<T> factory) 
    where T : class

Attributes

Type Description
NotNullAttribute

Type Parameters

Name Description
T

Parameters

Name Type Description
builder IConventionHostBuilder The builder
key string The key where the value is saved
factory Func<T> The factory method in the event the type is not found

Return Value

Type Description
T T.