avataron
avataron
> id you register your bookmark provider via a call which yea, I registered it in startup.cs
> @mohdali I don't know what was @avataron 's use case. My use case was that I wanted to hide (hardcode, something) some of the properties of the HTTPEndpoint activity...
> ```cs > var activityType = notification.Activity; > > if (activityType is HttpEndpoint) > { > var httpEndpoint = activityType as HttpEndpoint; > > httpEndpoint.Output.Headers.Add("My-Header", "value"); > } > >...