Skip to content

Commit a5c7bc2

Browse files
rshutton1Ryan Hutton
andauthored
correction to exposing data with cachemetadata doc (#22784)
* correction to exposing data with cachemetadata doc * update Additional resources request per 22585 Co-authored-by: Ryan Hutton <[email protected]>
1 parent e9a9186 commit a5c7bc2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/architecture/microservices/multi-container-microservice-net-applications/rabbitmq-event-bus-development-test-environment.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ A production-ready solution with support for RabbitMQ.
116116
- **MassTransit** \
117117
<https://masstransit-project.com/>
118118

119+
- **Rebus** - Open source .NET Service Bus
120+
<https://github.com/rebus-org/Rebus>
121+
119122
> [!div class="step-by-step"]
120123
> [Previous](integration-event-based-microservice-communications.md)
121124
> [Next](subscribe-events.md)

docs/framework/windows-workflow-foundation/exposing-data-with-cachemetadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected override void CacheMetadata(NativeActivityMetadata metadata)
5555

5656
In order to pass data to child activities that are to be scheduled by an activity using variables, it is necessary to add the variables as implementation variables; public variables cannot have their values set this way. The reason for this is that activities are intended to be executed more as implementations of functions (which have parameters), rather than encapsulated classes (which have properties). However, there are situations in which the arguments must be explicitly set, such as when using <xref:System.Activities.NativeActivityContext.ScheduleActivity%2A>, since the scheduled activity doesn't have access to the parent activity's arguments in the way a child activity would.
5757

58-
The following code snippet demonstrates how to pass an argument form a native activity into a scheduled activity using <xref:System.Activities.Activity.CacheMetadata%2A>.
58+
The following code snippet demonstrates how to pass an argument from a native activity into a scheduled activity using <xref:System.Activities.Activity.CacheMetadata%2A>.
5959

6060
```csharp
6161
public sealed class ChildActivity : NativeActivity

0 commit comments

Comments
 (0)