You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/dotnet-sdk-docs/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,11 @@ Put the Dapr .NET SDK to the test. Walk through the .NET quickstarts and tutoria
45
45
|[Dapr.AI](https://www.nuget.org/packages/Dapr.AI)|[Documentation]({{% ref dotnet-ai %}}) | Create and manage AI operations in .NET. |
46
46
|[Dapr.AI.A2a](https://www.nuget.org/packages/Dapr.AI.A2a)|| Dapr SDK for implementing agent-to-agent operations using the [A2A](https://github.com/a2aproject/a2a-dotnet) framework. |
47
47
|[Dapr.AI.Microsoft.Extensions](https://www.nuget.org/packages/Dapr.AI.Microsoft.Extensions)|[Documentation]({{% ref dotnet-ai-extensions-howto %}}) | Easily interact with LLMs conversationally and using tooling via the Dapr Conversation building block. |
48
-
|[Dapr.AspNetCore](https://www.nuget.org/packages/Dapr.AspNetCore)|[Documentation]({{% ref dotnet-server %}}) | Write servers and services in .NET using the Dapr SDK. Includes support and utilities providing richer integration with ASP.NET Core. |
48
+
|[Dapr.AspNetCore](https://www.nuget.org/packages/Dapr.AspNetCore)|[Documentation]({{% ref dotnet-client %}}) | Write servers and services in .NET using the Dapr SDK. Includes support and utilities providing richer integration with ASP.NET Core. |
49
49
|[Dapr.Actors](https://www.nuget.org/packages/Dapr.Actors)|[Documentation]({{% ref dotnet-actors %}}) | Create virtual actors with state, reminders/timers, and methods. |
50
50
|[Dapr.Actors.AspNetCore](https://www.nuget.org/packages/Dapr.Actors)|[Documentation]({{% ref dotnet-actors %}}) | Create virtual actors with state, reminders/timers, and methods with rich integration with ASP.NET Core. |
51
51
|[Dapr.Actors.Analyzers](https://www.nuget.org/packages/Dapr.Actors.Analyzers)|[Documentation]({{% ref dotnet-guidance-source-generators %}}) | A collection of Roslyn source generators and analyzers for enabling better practices and preventing common errors when using Dapr Actors in .NET. |
52
-
|[Dapr.Cryptography](https://www.nuget.org/packages/Dapr.Cryptography)|[Documentation]({{% dotnet-cryptography %}}) | Encrypt and decrypt streaming state of any size using Dapr's cryptography building block. |
52
+
|[Dapr.Cryptography](https://www.nuget.org/packages/Dapr.Cryptography)|[Documentation]({{% ref dotnet-cryptography %}}) | Encrypt and decrypt streaming state of any size using Dapr's cryptography building block. |
53
53
|[Dapr.Jobs](https://www.nuget.org/packages/Dapr.Jobs)|[Documentation]({{% ref dotnet-jobs %}}) | Create and manage the scheduling and orchestration of jobs. |
54
54
|[Dapr.Jobs.Analyzers](https://www.nuget.org/packages/Dapr.Jobs.Analyzers)|[Documentation]({{% ref dotnet-guidance-source-generators %}}) | A collection of Roslyn source generators and analyzers for enabling better practices and preventing common errors when using Dapr Jobs in .NET. |
55
55
|[Dapr.DistributedLocks](https://www.nuget.org/packages/Dapr.DistributedLocks)|[Documentation]({{% ref dotnet-distributed-lock %}}) | Create and manage distributed locks for managing exclusive resource access. |
Copy file name to clipboardExpand all lines: daprdocs/content/en/dotnet-sdk-docs/dotnet-client/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ to communicate bidirectionally with the Dapr sidecar. The SDK provides a helper
179
179
purpose called `CheckOutboundHealthAsync`. This isn't referring to outbound from the SDK to the runtime, so much as
180
180
outbound from the Dapr runtime back into the client application using the SDK.
181
181
182
-
This method is simply opening a connection to the {{% ref health_api#wait-for-specific-health-check-against-outbound-path %}}
182
+
This method is simply opening a connection to the {{% ref "health_api#wait-for-specific-health-check-against-outbound-path" %}}
183
183
endpoint in the Dapr Health API and evaluating the HTTP status code returned to determine the health of the endpoint
184
184
as reported by the runtime.
185
185
@@ -350,7 +350,7 @@ While the .NET SDK provides a way to poll for the sidecar health, it is not gene
350
350
utilize this functionality unless they are explicitly using Dapr to also retrieve secrets or configuration values.
351
351
352
352
There are two methods available:
353
-
-`CheckOutboundHealthAsync` which queries an outbound readiness endpoint in the Dapr Health API {{% ref health_api#wait-for-specific-health-check-against-outbound-path %}}
353
+
-`CheckOutboundHealthAsync` which queries an outbound readiness endpoint in the Dapr Health API {{% ref "health_api#wait-for-specific-health-check-against-outbound-path" %}}
354
354
for a successful HTTP status code and reports readiness based on this value.
355
355
-`WaitForSidecarAsync` continuously polls `CheckOutboundHealthAsync` until it returns a successful status code.
0 commit comments