NServiceBus.ConfiguredPublishers.Add C# (CSharp) Method

Add() public method

public Add ( IPublisherSource publisherSource ) : void
publisherSource IPublisherSource
return void
        public void Add(IPublisherSource publisherSource)
        {
            Guard.AgainstNull(nameof(publisherSource), publisherSource);
            publisherSources.Add(publisherSource);
        }
ConfiguredPublishers