Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing invalid XML documentation #6351

Merged
merged 2 commits into from Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -10,7 +10,6 @@ public static class XmlSerializationExtensions
/// <summary>
/// Tells the serializer to not wrap properties which have either XDocument or XElement with a "PropertyName" element.
/// By default the xml serializer serializes the following message.
/// </summary>
/// <code>
/// interface MyMessage { XDocument Property { get; set; } }
/// </code>
Expand All @@ -36,6 +35,7 @@ public static class XmlSerializationExtensions
/// </Root>
/// </MyMessage>
/// </code>
/// </summary>
public static SerializationExtensions<XmlSerializer> DontWrapRawXml(this SerializationExtensions<XmlSerializer> config)
{
Guard.AgainstNull(nameof(config), config);
Expand Down
Expand Up @@ -10,10 +10,10 @@ public class TransportReceiveInfrastructure
{
/// <summary>
/// Creates new result.
/// </summary>
/// <param name="messagePumpFactory">Factory for creating a message pump for each queue to be consumed from.</param>
/// <param name="queueCreatorFactory">Factory for the queue creator.</param>
/// <param name="preStartupCheck">Callback to perform checks before the transport starts receiving messages.</param>
/// </summary>
public TransportReceiveInfrastructure(
Func<IPushMessages> messagePumpFactory,
Func<ICreateQueues> queueCreatorFactory,
Expand Down
Expand Up @@ -10,9 +10,9 @@ public class TransportSendInfrastructure
{
/// <summary>
/// Creates new result object.
/// </summary>
/// <param name="dispatcherFactory">Factory to create the dispatcher.</param>
/// <param name="preStartupCheck">Callback to perform checks before the transports starts sending messages.</param>
/// </summary>
public TransportSendInfrastructure(Func<IDispatchMessages> dispatcherFactory,
Func<Task<StartupCheckResult>> preStartupCheck)
{
Expand Down