We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7880d commit f8a15b6Copy full SHA for f8a15b6
src/Abstractions/TaskOrchestrationContext.cs
@@ -61,9 +61,9 @@ public abstract class TaskOrchestrationContext
61
public abstract bool IsReplaying { get; }
62
63
/// <summary>
64
- /// Gets the version of the current orchestration instance, which was set when the instance was created.
+ /// Gets or sets the version of the current orchestration instance, which was set when the instance was created.
65
/// </summary>
66
- public virtual string Version => string.Empty;
+ public virtual string Version { get; protected internal set; } = string.Empty;
67
68
69
/// Gets the configuration settings for the orchestration context.
0 commit comments