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
1 change: 0 additions & 1 deletion src/SoapCore/CachedDataContractSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

namespace SoapCore
{

public static class CachedDataContractSerializer
{
private static readonly ConcurrentDictionary<string, DataContractSerializer> CachedSerializers = new ConcurrentDictionary<string, DataContractSerializer>();
Expand Down
1 change: 0 additions & 1 deletion src/SoapCore/MemberWithAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace SoapCore
{

public class MemberWithAttribute<TAttribute>(MemberInfo member, TAttribute attribute)
where TAttribute : Attribute
{
Expand Down
1 change: 0 additions & 1 deletion src/SoapCore/SoapEndpointMiddleware.cs
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,6 @@ private void DeserializeParameters(
MessageContractAttribute messageContractAttribute,
object[] arguments)
{

var messageHeadersMembers = (from p in parameterType.GetPropertyOrFieldMembers()
let attr = p.GetCustomAttribute<MessageHeaderAttribute>()
where attr != null
Expand Down
Loading