Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SoapCore/MembersWithAttributeCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

namespace SoapCore
{
internal static partial class ReflectionExtensions

Check warning on line 6 in src/SoapCore/MembersWithAttributeCache.cs

View workflow job for this annotation

GitHub Actions / Analyze

{
private static class MembersWithAttributeCache<TAttribute>
where TAttribute : Attribute
{
public static ConcurrentDictionary<Type, MemberWithAttribute<TAttribute>[]> CacheEntries = new();
public static ConcurrentDictionary<Type, MemberWithAttribute<TAttribute>[]> CacheEntries = new ();

Check warning on line 11 in src/SoapCore/MembersWithAttributeCache.cs

View workflow job for this annotation

GitHub Actions / Analyze

}
}
}
2 changes: 1 addition & 1 deletion src/SoapCore/Meta/MetaMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected override void OnWriteStartEnvelope(XmlDictionaryWriter writer)
wroteSoapNamespace = true;
}

if(!wroteSoapNamespace)
if (!wroteSoapNamespace)
{
throw new ArgumentOutOfRangeException(nameof(Version), "Unsupported MessageVersion encountered while writing envelope.");
}
Expand Down
Loading