File tree 12 files changed +22
-22
lines changed
Infra.FileAccess.Physical
Storage/Infra.Storage.Minio
12 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ Implement memory cache mechanism with Microsoft.Extensions.Caching.Memory.
16
16
builder .Services .AddSingleton <ICache , MemoryCache >();
17
17
```
18
18
19
- > 注入 ICache 來使用記憶體快取。
19
+ > 注入 ` ICache ` 來使用記憶體快取。
20
20
21
- 2 . Inject ICache to use memory cache .
21
+ 2 . Inject ` ICache ` to use memory cache .
Original file line number Diff line number Diff line change @@ -35,6 +35,6 @@ Implement distributed cache mechanism with Microsoft.Extensions.Caching.StackExc
35
35
builder.Services.AddSingleton<ICache, RedisCache>();
36
36
```
37
37
38
- > 注入 ICache 來使用分散式快取。
38
+ > 注入 ` ICache` 來使用分散式快取。
39
39
40
- 3 . Inject ICache to use distributed cache.
40
+ 3 . Inject ` ICache` to use distributed cache.
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ Implement encryption and decryption mechanism.
13
13
builder .Services .AddSingleton <ICryptoFactory , CryptoFactory >();
14
14
```
15
15
16
- > 注入 ICryptoFactory 並建立 ICryptoAlgorithm 來加解密資料。
16
+ > 注入 ` ICryptoFactory ` 並建立 ` ICryptoAlgorithm ` 來加解密資料。
17
17
18
- 2 . Create ICryptoAlgorithm with injected ICryptoFactory to encrypt or decrypt your data .
18
+ 2 . Create ` ICryptoAlgorithm ` with injected ` ICryptoFactory ` to encrypt or decrypt your data .
Original file line number Diff line number Diff line change @@ -36,6 +36,6 @@ Implement send mail mechanism with Mailgun API.
36
36
builder.Services.AddSingleton<IMailClient, MailgunClient>();
37
37
```
38
38
39
- > 注入 IMailClient 來送信。
39
+ > 注入 ` IMailClient` 來送信。
40
40
41
- 3 . Inject IMailClient to send mail.
41
+ 3 . Inject ` IMailClient` to send mail.
Original file line number Diff line number Diff line change @@ -40,6 +40,6 @@ Implement send mail mechanism with MailKit.
40
40
builder.Services.AddSingleton<IMailClient, SmtpClient>();
41
41
```
42
42
43
- > 注入 IMailClient 來送信。
43
+ > 注入 ` IMailClient` 來送信。
44
44
45
- 3 . Inject IMailClient to send mail.
45
+ 3 . Inject ` IMailClient` to send mail.
Original file line number Diff line number Diff line change @@ -42,4 +42,4 @@ Implement ftp file access mechanism with FluentFTP.
42
42
43
43
> 注入 `IFileAccess` 來使用 FTP 檔案存取。
44
44
45
- 3 . Inject IFileAccess to use ftp file access.
45
+ 3 . Inject ` IFileAccess` to use ftp file access.
Original file line number Diff line number Diff line change @@ -38,6 +38,6 @@ Implement file access mechanism with gRPC.
38
38
builder.Services.AddSingleton<IFileAccess, GrpcFileAccess>();
39
39
```
40
40
41
- > 注入 IFileAccess 來使用 gRPC 檔案存取。
41
+ > 注入 ` IFileAccess` 來使用 gRPC 檔案存取。
42
42
43
- 3 . Inject IFileAccess to use gRPC file access.
43
+ 3 . Inject ` IFileAccess` to use gRPC file access.
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ Implement physical file access mechanism.
30
30
builder.Services.AddSingleton<IFileAccess, PhysicalFileAccess>();
31
31
```
32
32
33
- > 注入 IFileAccess 來使用實體檔案存取。
33
+ > 注入 ` IFileAccess` 來使用實體檔案存取。
34
34
35
- 3 . Inject IFileAccess to use physical file access.
35
+ 3 . Inject ` IFileAccess` to use physical file access.
Original file line number Diff line number Diff line change @@ -47,4 +47,4 @@ Implement sftp file access mechanism with SSH.NET.
47
47
48
48
> 注入 `IFileAccess` 來使用 SFTP 檔案存取。
49
49
50
- 3 . Inject IFileAccess to use sftp file access.
50
+ 3 . Inject ` IFileAccess` to use sftp file access.
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ Implement hash mechanism.
17
17
builder .Services .AddSingleton <IHmacFactory , HmacFactory >();
18
18
```
19
19
20
- > 注入 IHashFactory (or IHmacAlgorithm ) 並建立 IHashAlgorithm (or IHmacFactory ) 來雜湊資料。
20
+ > 注入 ` IHashFactory ` (or ` IHmacAlgorithm ` ) 並建立 ` IHashAlgorithm ` (or ` IHmacFactory ` ) 來雜湊資料。
21
21
22
- 2 . Create IHashAlgorithm (or IHmacAlgorithm ) with injected IHashFactory (or IHmacFactory ) to hash your data .
22
+ 2 . Create ` IHashAlgorithm ` (or ` IHmacAlgorithm ` ) with injected ` IHashFactory ` (or ` IHmacFactory ` ) to hash your data .
Original file line number Diff line number Diff line change @@ -38,6 +38,6 @@ Implement object storage mechanism with Minio.
38
38
builder.Services.AddSingleton<IObjectStorage, MinioStorage>();
39
39
```
40
40
41
- > 注入 IObjectStorage 來操作物件。
41
+ > 注入 ` IObjectStorage` 來操作物件。
42
42
43
- 3 . Inject IObjectStorage to operate object.
43
+ 3 . Inject ` IObjectStorage` to operate object.
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ Implement time wrapper.
13
13
builder .Services .AddSingleton <ITimeWrapper , TimeWrapper >();
14
14
```
15
15
16
- > 注入 ITimeWrapper 來使用時間包裝器。
16
+ > 注入 ` ITimeWrapper ` 來使用時間包裝器。
17
17
18
- 2 . Inject ITimeWrapper to use time wrapper .
18
+ 2 . Inject ` ITimeWrapper ` to use time wrapper .
You can’t perform that action at this time.
0 commit comments