Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions src/SoapCore/MembersWithAttributeCache.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
using System;
using System.Collections.Concurrent;

namespace SoapCore
{
internal static partial class ReflectionExtensions
{
private static class MembersWithAttributeCache<TAttribute> where TAttribute : Attribute
{
public static ConcurrentDictionary<Type, MemberWithAttribute<TAttribute>[]> CacheEntries = new();
}
}
}
using System;
using System.Collections.Concurrent;

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();

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

View workflow job for this annotation

GitHub Actions / Analyze

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

View workflow job for this annotation

GitHub Actions / Analyze

}
}
}
Loading
Loading