NServiceBus.CorrelationContextExtensions.GetCorrelationId C# (CSharp) Method

GetCorrelationId() private method

private GetCorrelationId ( this options ) : string
options this
return string
        public static string GetCorrelationId(this SendOptions options)
        {
            Guard.AgainstNull(nameof(options), options);

            AttachCorrelationIdBehavior.State state;
            options.Context.TryGet(out state);

            return state?.CustomCorrelationId;
        }
CorrelationContextExtensions