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
/// Gets or sets the originating <see cref="ServiceBusReceivedMessage"/>.
/// </summary>
public ServiceBusReceivedMessage Message
{
get => args.Properties.TryGetValue(MessageKey, out var value) && value is ServiceBusReceivedMessage sbm ? sbm : throw new InvalidOperationException($"The {MessageKey} property has not been set.");
internal set => args.Properties[MessageKey] = value;