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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Enhancements:
Bugfixes:
- DynamicProxy emits invalid metadata for redeclared event (@stakx, #590)
- Proxies using records with a base class broken using .NET 6 compiler (@ajcvickers, #601)
- `MissingMethodException` when proxying interfaces containing sealed methods (@stakx, #621)

## 5.0.0 (2022-05-11)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright 2004-2022 Castle Project - http://www.castleproject.org/
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#if NETCOREAPP3_0_OR_GREATER

using System.Reflection;

using NUnit.Framework;

namespace Castle.DynamicProxy.Tests
{
[TestFixture]
public class DefaultInterfaceMembersTestCase : BasePEVerifyTestCase
{
[Test]
public void Can_proxy_interface_with_sealed_method()
{
_ = generator.CreateInterfaceProxyWithoutTarget<IHaveSealedMethod>();
}

[Test]
public void Can_invoke_sealed_method_in_proxied_interface()
{
var proxy = generator.CreateInterfaceProxyWithoutTarget<IHaveSealedMethod>();
var invokedMethod = proxy.SealedMethod();
Assert.AreEqual(typeof(IHaveSealedMethod).GetMethod(nameof(IHaveSealedMethod.SealedMethod)), invokedMethod);
}

public interface IHaveSealedMethod
{
sealed MethodBase SealedMethod()
{
return MethodBase.GetCurrentMethod();
}
}
}
}

#endif
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ protected override MetaMethod GetMethodToGenerate(MethodInfo method, IProxyGener
return null;
}

var proxyable = AcceptMethod(method, false, hook);
var proxyable = AcceptMethod(method, true, hook);
if (!proxyable && !method.IsAbstract)
{
// we don't need to do anything
return null;
}

return new MetaMethod(method, method, isStandalone, proxyable, false);
}
}
Expand Down