-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathHybridCacheBuilderExtensions.cs
64 lines (58 loc) · 2.53 KB
/
HybridCacheBuilderExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
namespace Microsoft.Extensions.Caching.Hybrid;
/// <summary>
/// Configuration extension methods for <see cref="IHybridCacheBuilder"/> / <see cref="HybridCache"/>
/// </summary>
public static class HybridCacheBuilderExtensions
{
/// <summary>
/// Serialize values of type <typeparamref name="T"/> with the specified serializer from <paramref name="serializer"/>
/// </summary>
public static IHybridCacheBuilder WithSerializer<T>(this IHybridCacheBuilder builder, IHybridCacheSerializer<T> serializer)
{
builder.Services.AddSingleton<IHybridCacheSerializer<T>>(serializer);
return builder;
}
/// <summary>
/// Serialize values of type <typeparamref name="T"/> with the serializer of type <typeparamref name="TImplementation"/>
/// </summary>
public static IHybridCacheBuilder WithSerializer<T,
#if NET5_0_OR_GREATER
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)]
#endif
TImplementation>(this IHybridCacheBuilder builder)
where TImplementation : class, IHybridCacheSerializer<T>
{
builder.Services.AddSingleton<IHybridCacheSerializer<T>, TImplementation>();
return builder;
}
/// <summary>
/// Add <paramref name="factory"/> as an additional serializer factory, which can provide serializers for multiple types
/// </summary>
public static IHybridCacheBuilder WithSerializerFactory(this IHybridCacheBuilder builder, IHybridCacheSerializerFactory factory)
{
builder.Services.AddSingleton<IHybridCacheSerializerFactory>(factory);
return builder;
}
/// <summary>
/// Add a factory of type <typeparamref name="TImplementation"/> as an additional serializer factory, which can provide serializers for multiple types
/// </summary>
public static IHybridCacheBuilder WithSerializerFactory<
#if NET5_0_OR_GREATER
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)]
#endif
TImplementation>(this IHybridCacheBuilder builder)
where TImplementation : class, IHybridCacheSerializerFactory
{
builder.Services.AddSingleton<IHybridCacheSerializerFactory, TImplementation>();
return builder;
}
}